From: Mike Elliott Date: Thu, 21 Sep 2017 15:50:59 +0000 (-0400) Subject: Add fix for multicloud port definition in yaml X-Git-Tag: 2.0.0-ONAP~641 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=oom.git;a=commitdiff_plain;h=3c7a68f54dfaebd9e622c8ad126b9c7735370300 Add fix for multicloud port definition in yaml Replaced underscore with hypen. Underscores not supported in yaml. Change-Id: I5b45708cc39aac346a03d4d25ed82ab4080bd608 Issue-Id: OOM-309 Signed-off-by: Mike Elliott --- diff --git a/kubernetes/multicloud/templates/framework-deployment.yaml b/kubernetes/multicloud/templates/framework-deployment.yaml index ad1dac8077..9f122f0fd2 100644 --- a/kubernetes/multicloud/templates/framework-deployment.yaml +++ b/kubernetes/multicloud/templates/framework-deployment.yaml @@ -17,8 +17,8 @@ spec: containers: - env: - name: MSB_ADDR - value: "{{ .Values.msbgateway }}" - _ name: MSB_PORT + value: {{ .Values.msbgateway }} + - name: MSB_PORT value: "{{ .Values.msbPort }}" - name: AAI_ADDR value: aai-service.{{ .Values.nsPrefix }}-aai @@ -55,5 +55,3 @@ spec: path: /dockerdata-nfs/{{ .Values.nsPrefix }}/multicloud/framework/logs imagePullSecrets: - name: "{{ .Values.nsPrefix }}-docker-registry-key" - -