diff options
author | Daniel Rose <dr695h@att.com> | 2019-11-27 15:41:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-11-27 15:41:25 +0000 |
commit | 6e38b492acd3ec44a869055092399b6f18c659b8 (patch) | |
tree | c983473d8fc6db297fb9cb8262e348975588f795 | |
parent | eb01b0f5e5f9919499d76e5aaff997c9fafdda93 (diff) | |
parent | f8e59f81696b59a8674ec407fda6de03048a0041 (diff) |
Merge "Add Inventory and Deployment Global property needed for Bulkpm"
-rw-r--r-- | resources/config/eteshare/config/robot_properties.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/resources/config/eteshare/config/robot_properties.py b/resources/config/eteshare/config/robot_properties.py index 80d8a6a..af98847 100644 --- a/resources/config/eteshare/config/robot_properties.py +++ b/resources/config/eteshare/config/robot_properties.py @@ -164,7 +164,7 @@ GLOBAL_DCAE_HVVES_SERVER_NAME = 'dcae-hv-ves-collector.{{include "common.namespa GLOBAL_DCAE_HVVES_SERVER_PORT = "6061" # data router info - everything is from the private oam network (also called onap private network) GLOBAL_DMAAP_DR_PROV_SERVER_PROTOCOL = "http" -GLOBAL_DMAAP_DR_PROV_SERVER_PORT = "8080" +GLOBAL_DMAAP_DR_PROV_SERVER_PORT = "80" GLOBAL_DMAAP_DR_NODE_SERVER_PROTOCOL = "http" GLOBAL_DMAAP_DR_NODE_SERVER_PORT = "8080" # dmaap message router info @@ -206,9 +206,17 @@ GLOBAL_MSB_SERVER_PORT = "443" GLOBAL_MR_SERVER_PROTOCOL = "http" GLOBAL_MR_SERVER_PORT = "3904" # bus controller info +GLOBAL_BC_SERVER_PROTOCOL = "https" GLOBAL_BC_HTTPS_SERVER_PORT = "8443" GLOBAL_BC_USERNAME = '{{ .Values.bcUsername }}' GLOBAL_BC_PASSWORD = '{{ .Values.bcPassword }}' +# dcae inventory and deployment handler info +GLOBAL_INVENTORY_SERVER_NAME = 'inventory.{{include "common.namespace" .}}' +GLOBAL_INVENTORY_SERVER_PROTOCOL = "https" +GLOBAL_INVENTORY_SERVER_PORT = "8080" +GLOBAL_DEPLOYMENT_HANDLER_SERVER_NAME = 'deployment-handler.{{include "common.namespace" .}}' +GLOBAL_DEPLOYMENT_HANDLER_SERVER_PROTOCOL = "https" +GLOBAL_DEPLOYMENT_HANDLER_SERVER_PORT = "8443" # SO containers - everything is from the private oam network (also called onap private network) GLOBAL_SO_APIHAND_SERVER_PORT = "8080" GLOBAL_SO_SDCHAND_SERVER_PORT = "8085" |