From db5b5ffbd1e2281664a42ea128cde83f3dd6c8ff Mon Sep 17 00:00:00 2001 From: "k.kedron" Date: Mon, 9 Sep 2019 14:03:58 +0200 Subject: HTTPS calls for sdc Proper configuration for HTTPS for the sdc. Issue-ID: SDC-2548 Signed-off-by: Krystian Kedron Change-Id: I92aa92ac323bf97664841fb0d3cf8da4189a2c97 (cherry picked from commit 2b3f953c2b2099539166e49bdd18f61d70e3ca68) --- resources/config/eteshare/config/robot_properties.py | 10 +++++----- 1 file 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] -- cgit 1.2.3-korg