diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2022-01-10 13:21:56 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-01-10 13:21:56 +0000 |
commit | ced05fb514a5a2bdd6ff11a7d67d860b9aabc1d2 (patch) | |
tree | b6e3ea8eecc7f82bf3419d58715ba1c7b085c406 /kubernetes | |
parent | 62d53786f6dafe696a1be8040e5ecf6c9144fef0 (diff) | |
parent | ffc26bb703241b535455a71ece0dd3e1762c3602 (diff) |
Merge "[CPS] Add CPS Global Variables"
Diffstat (limited to 'kubernetes')
-rw-r--r-- | kubernetes/robot/resources/config/eteshare/config/robot_properties.py | 6 |
1 files changed, 6 insertions, 0 deletions
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) }}' |