summaryrefslogtreecommitdiffstats
path: root/kubernetes/multicloud
diff options
context:
space:
mode:
authorMike Elliott <mike.elliott@amdocs.com>2017-09-21 11:50:59 -0400
committerMike Elliott <mike.elliott@amdocs.com>2017-09-21 11:55:40 -0400
commit3c7a68f54dfaebd9e622c8ad126b9c7735370300 (patch)
tree312c26136744366e7dc2045482a7973f2c0906de /kubernetes/multicloud
parent8faaafeb610e0d38c7200e243b1da4c9f190a490 (diff)
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 <mike.elliott@amdocs.com>
Diffstat (limited to 'kubernetes/multicloud')
-rw-r--r--kubernetes/multicloud/templates/framework-deployment.yaml6
1 files changed, 2 insertions, 4 deletions
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"
-
-