diff options
Diffstat (limited to 'k8s-bootstrap-container')
-rwxr-xr-x | k8s-bootstrap-container/bootstrap.sh | 12 | ||||
-rw-r--r-- | k8s-bootstrap-container/pom.xml | 2 |
2 files changed, 10 insertions, 4 deletions
diff --git a/k8s-bootstrap-container/bootstrap.sh b/k8s-bootstrap-container/bootstrap.sh index cea06ce..f3e9b5d 100755 --- a/k8s-bootstrap-container/bootstrap.sh +++ b/k8s-bootstrap-container/bootstrap.sh @@ -32,9 +32,15 @@ CBS_REG='{"ID": "dcae-cbs0", "Name": "config_binding_service", "Address": "confi CBS_REG1='{"ID": "dcae-cbs1", "Name": "config-binding-service", "Address": "config-binding-service", "Port": 10000}' CM_REG='{"ID": "dcae-cm0", "Name": "cloudify_manager", "Address": "cloudify-manager.onap", "Port": 80}' INV_REG='{"ID": "dcae-inv0", "Name": "inventory", "Address": "inventory", "Port": 8080}' -# Policy handler will be looked up from a plugin on CM, which is running in the "onap" namespace, -# so the Address field has to add the .dcae qualifier. -PH_REG='{"ID": "dcae-ph0", "Name": "policy_handler", "Address": "policy-handler.dcae", "Port": 25577}' +# Policy handler will be looked up from a plugin on CM. If DCAE components are running in a different k8s +# namespace than CM (which always runs in the common ONAP namespace), then the policy handler address must +# be qualified with the DCAE namespace. +PH_REG='{"ID": "dcae-ph0", "Name": "policy_handler", "Port": 25577, "Address: policy-handler' +if [ ! -z "${DCAE_NAMESPACE}" ] +then + PH_REG="${PH_REG}.${DCAE_NAMESPACE}" +fi +PH_REG="${PH_REG}\"}" # Deploy components # $1 -- name (for bp and deployment) diff --git a/k8s-bootstrap-container/pom.xml b/k8s-bootstrap-container/pom.xml index 85b99bc..782577d 100644 --- a/k8s-bootstrap-container/pom.xml +++ b/k8s-bootstrap-container/pom.xml @@ -27,7 +27,7 @@ limitations under the License. <groupId>org.onap.dcaegen2.deployments</groupId> <artifactId>k8s-bootstrap-container</artifactId> <name>dcaegen2-deployments-k8s-bootstrap-container</name> - <version>1.1.8</version> + <version>1.1.9</version> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |