diff options
author | Abdelmuhaimen Seaudi <abdelmuhaimen.seaudi@orange.com> | 2019-08-09 20:51:30 +0000 |
---|---|---|
committer | Abdelmuhaimen Seaudi <abdelmuhaimen.seaudi@orange.com> | 2019-08-12 12:02:32 +0000 |
commit | e4e79763e2bd0bcbda51d9ee058e7a89df65ab7b (patch) | |
tree | b89dcfdf0ae2b4ccedd19434b4530cf10f937cd4 /resources/config/eteshare | |
parent | 5996d7a5b2d90c3caa563e27dbea6afa77b246e5 (diff) |
Add cds parameters needed for cds robot healthcheck
Issue-ID: TEST-193
Signed-off-by: Abdelmuhaimen Seaudi <abdelmuhaimen.seaudi@orange.com>
Change-Id: I52274d02e917e9b0546a9f52808ec379c84889ab
Diffstat (limited to 'resources/config/eteshare')
-rw-r--r-- | resources/config/eteshare/config/robot_properties.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/resources/config/eteshare/config/robot_properties.py b/resources/config/eteshare/config/robot_properties.py index 736c9d3..a8c14d8 100644 --- a/resources/config/eteshare/config/robot_properties.py +++ b/resources/config/eteshare/config/robot_properties.py @@ -116,6 +116,7 @@ GLOBAL_INJECTED_VM_IMAGE_NAME = '{{ .Values.ubuntu14Image }}' GLOBAL_INJECTED_VID_IP_ADDR = 'vid.{{include "common.namespace" .}}' GLOBAL_INJECTED_VM_FLAVOR = '{{ .Values.openStackFlavourMedium }}' GLOBAL_INJECTED_VNFSDK_IP_ADDR = 'refrepo.{{include "common.namespace" .}}' +GLOBAL_INJECTED_CCSDK_CDS_BLUEPRINT_PROCESSOR_IP_ADDR = 'cds-blueprints-processor-http.{{include "common.namespace" .}}' # aaf info - everything is from the private oam network (also called onap private network) GLOBAL_AAF_SERVER = 'https://aaf-service.{{include "common.namespace" .}}:8100' @@ -306,3 +307,11 @@ GLOBAL_PRELOAD_DATA_FOLDER = "/var/opt/ONAP/demo/preload-data" # location where TOSCA artifacts are loaded from GLOBAL_TOSCA_ONBOARDING_PACKAGES_FOLDER = "/var/opt/ONAP/demo/tosca" + +# cds info - everything is from the private oam network (also called onap private network) +GLOBAL_CCSDK_CDS_SERVER_PROTOCOL = "http" +GLOBAL_CCSDK_CDS_HEALTH_SERVER_PORT = "8080" +GLOBAL_CCSDK_CDS_USERNAME = 'ccsdkapps' +GLOBAL_CCSDK_CDS_PASSWORD = 'ccsdkapps' +GLOBAL_CCSDK_CDS_AUTHENTICATION = [GLOBAL_CDS_USERNAME, GLOBAL_CDS_PASSWORD] + |