summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authork.kedron <k.kedron@partner.samsung.com>2019-09-09 14:03:58 +0200
committerk.kedron <k.kedron@partner.samsung.com>2019-09-09 14:03:58 +0200
commit2b3f953c2b2099539166e49bdd18f61d70e3ca68 (patch)
treea997d259d899b27a635c2f22ec5825d1795346b4
parent11fd296aa2aab54fc40fd11e4839d61ee753fa9b (diff)
HTTPS calls for sdc
Proper configuration for HTTPS for the sdc. Issue-ID: SDC-2548 Signed-off-by: Krystian Kedron <k.kedron@partner.samsung.com> Change-Id: I92aa92ac323bf97664841fb0d3cf8da4189a2c97
-rw-r--r--resources/config/eteshare/config/robot_properties.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/resources/config/eteshare/config/robot_properties.py b/resources/config/eteshare/config/robot_properties.py
index 3fb42e1..aaa43e8 100644
--- a/resources/config/eteshare/config/robot_properties.py
+++ b/resources/config/eteshare/config/robot_properties.py
@@ -139,11 +139,11 @@ GLOBAL_APPC_CDT_SERVER_PROTOCOL = "https"
GLOBAL_APPC_CDT_SERVER_PORT = "18080"
GLOBAL_APPC_CDT_USERNAME = "demo"
# sdc info - everything is from the private oam network (also called onap private network)
-GLOBAL_SDC_SERVER_PROTOCOL = "http"
-GLOBAL_SDC_FE_PORT = "8181"
-GLOBAL_SDC_BE_PORT = "8080"
-GLOBAL_SDC_BE_ONBOARD_PORT = "8081"
-GLOBAL_SDC_DCAE_BE_PORT = "8082"
+GLOBAL_SDC_SERVER_PROTOCOL = "https"
+GLOBAL_SDC_FE_PORT = "9443"
+GLOBAL_SDC_BE_PORT = "8443"
+GLOBAL_SDC_BE_ONBOARD_PORT = "8445"
+GLOBAL_SDC_DCAE_BE_PORT = "8444"
GLOBAL_SDC_USERNAME = "beep"
GLOBAL_SDC_PASSWORD = "boop"
GLOBAL_SDC_AUTHENTICATION = [GLOBAL_SDC_USERNAME, GLOBAL_SDC_PASSWORD]