summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormrichomme <morgan.richomme@orange.com>2020-03-22 09:13:21 +0100
committermrichomme <morgan.richomme@orange.com>2020-03-22 09:13:21 +0100
commit7a19b2ef27679a176d279345693c46c99aa1371f (patch)
tree4fef120215ee2424bb278b810903aa7c46b55cd7
parent3fa8381f2a1e5f030ee1388466417817dda0fbe2 (diff)
Adapt SNDC robot test for HTTPS
Change has been done in sdnc to exclude HTTP port Healthcheck test must follow Issue-ID: SDNC-1120 Signed-off-by: mrichomme <morgan.richomme@orange.com> Change-Id: I3a88f20a67ca7d018155c5682224988407a86a8e
-rw-r--r--resources/config/eteshare/config/robot_properties.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/resources/config/eteshare/config/robot_properties.py b/resources/config/eteshare/config/robot_properties.py
index fa52590..8aa4f59 100644
--- a/resources/config/eteshare/config/robot_properties.py
+++ b/resources/config/eteshare/config/robot_properties.py
@@ -286,8 +286,8 @@ GLOBAL_PORTAL_SERVER_PORT = "8989"
GLOBAL_PORTAL_USERNAME = '{{ .Values.portalUsername }}'
GLOBAL_PORTAL_PASSWORD = '{{ .Values.portalPassword }}'
# sdnc info - everything is from the private oam network (also called onap private network)
-GLOBAL_SDNC_SERVER_PROTOCOL = "http"
-GLOBAL_SDNC_REST_PORT = "8282"
+GLOBAL_SDNC_SERVER_PROTOCOL = "https"
+GLOBAL_SDNC_REST_PORT = "8443"
GLOBAL_SDNC_ADMIN_PORT = "8843"
GLOBAL_SDNC_USERNAME = '{{ .Values.sdncUsername }}'
GLOBAL_SDNC_PASSWORD = '{{ .Values.sdncPassword }}'
@@ -327,4 +327,3 @@ GLOBAL_CCSDK_CDS_HEALTH_SERVER_PORT = "8080"
GLOBAL_CCSDK_CDS_USERNAME = 'ccsdkapps'
GLOBAL_CCSDK_CDS_PASSWORD = 'ccsdkapps'
GLOBAL_CCSDK_CDS_AUTHENTICATION = [GLOBAL_CCSDK_CDS_USERNAME, GLOBAL_CCSDK_CDS_PASSWORD]
-