summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authork.kedron <k.kedron@partner.samsung.com>2019-09-09 14:03:58 +0200
committerKrystian Kedron <k.kedron@partner.samsung.com>2019-09-10 06:20:34 +0000
commitdb5b5ffbd1e2281664a42ea128cde83f3dd6c8ff (patch)
tree083211fe2a0034770288cd30db30ecccabf493f4
parentb6b5b0e6f8880e3a922a2fef97e95e5013475228 (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 (cherry picked from commit 2b3f953c2b2099539166e49bdd18f61d70e3ca68)
-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 31aad9d..bfe29c2 100644
--- a/resources/config/eteshare/config/robot_properties.py
+++ b/resources/config/eteshare/config/robot_properties.py
@@ -136,11 +136,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]