summaryrefslogtreecommitdiffstats
path: root/kubernetes/config/templates
diff options
context:
space:
mode:
authorMandeep Khinda <mandeep.khinda@amdocs.com>2017-09-08 20:14:49 +0000
committerMandeep Khinda <mandeep.khinda@amdocs.com>2017-09-08 20:18:10 +0000
commit063a3ce97495362035652721b3e626d6ab60c31c (patch)
tree9852f24d0d356eb720ae039bcaab731e5cc1f4a8 /kubernetes/config/templates
parent89b39407da346a0ec34579efc8b181efada14b6d (diff)
fixing bug in new config pod
-it appears the variable substitution was not working and the config map was empty causing the config pod to fail. I was sure I tested this...alas :'( Issue-ID: OOM-277 Change-Id: I439d2e0d12f74e76c2fb0a2d44da8aaa473035a7 Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
Diffstat (limited to 'kubernetes/config/templates')
-rw-r--r--kubernetes/config/templates/pod.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/config/templates/pod.yaml b/kubernetes/config/templates/pod.yaml
index 296ebba64c..c9bf7a907c 100644
--- a/kubernetes/config/templates/pod.yaml
+++ b/kubernetes/config/templates/pod.yaml
@@ -4,7 +4,7 @@ metadata:
name: global-onap-configmap
namespace: "{{ .Values.nsPrefix }}"
data:
- {{ (.Files.Glob "{{ .Values.parameterFile }}").AsConfig | indent 2 }}
+ {{ (.Files.Glob "onap-parameters.yaml").AsConfig | indent 2 }}
---
apiVersion: v1
kind: Pod