From ffc26bb703241b535455a71ece0dd3e1762c3602 Mon Sep 17 00:00:00 2001 From: Nagendra90287 Date: Mon, 3 Jan 2022 19:20:44 +0530 Subject: [PATCH] [CPS] Add CPS Global Variables Adding CPS Global Variables to be used in running cps robot tests Issue-ID: CPS-840 Change-Id: I7aa562708323c73b3d4c74103f2061b5be02a8fa Signed-off-by: Nagendra90287 --- .../robot/resources/config/eteshare/config/robot_properties.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/kubernetes/robot/resources/config/eteshare/config/robot_properties.py b/kubernetes/robot/resources/config/eteshare/config/robot_properties.py index 9076a1f9f9..84df722cb0 100644 --- a/kubernetes/robot/resources/config/eteshare/config/robot_properties.py +++ b/kubernetes/robot/resources/config/eteshare/config/robot_properties.py @@ -377,3 +377,9 @@ GLOBAL_CCSDK_CDS_USERNAME = 'ccsdkapps' GLOBAL_CCSDK_CDS_PASSWORD = 'ccsdkapps' GLOBAL_CCSDK_CDS_AUTHENTICATION = [GLOBAL_CCSDK_CDS_USERNAME, GLOBAL_CCSDK_CDS_PASSWORD] GLOBAL_CDS_AUTH = "Y2NzZGthcHBzOmNjc2RrYXBwcw==" + +#cps info - everything is from the private oam network (also called onap private network) +GLOBAL_INJECTED_CPS_IP_ADDR = '{{include "robot.ingress.svchost" (dict "root" . "hostname" "cps") }}' +GLOBAL_CPS_SERVER_PROTOCOL = "http" +GLOBAL_CPS_SERVER_PORT = '{{include "robot.ingress.port" (dict "root" . "hostname" "cps" "port" 8080) }}' +GLOBAL_CPS_HEALTH_PORT = '{{include "robot.ingress.port" (dict "root" . "hostname" "cps" "port" 8081) }}' -- 2.16.6