converting config to helm and setting demo values
To be able to run the vFW/vLB demos, these needed to be done
manually and it was a big mess.
With the power of helm we can now pass data into the config pod
and make some substitutions
Issue-ID: OOM-277
Change-Id: Ie167920fac7896661b81443aa460ce2e6f615187
Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
diff --git a/kubernetes/config/templates/pod.yaml b/kubernetes/config/templates/pod.yaml
new file mode 100644
index 0000000..296ebba
--- /dev/null
+++ b/kubernetes/config/templates/pod.yaml
@@ -0,0 +1,38 @@
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: global-onap-configmap
+ namespace: "{{ .Values.nsPrefix }}"
+data:
+ {{ (.Files.Glob "{{ .Values.parameterFile }}").AsConfig | indent 2 }}
+---
+apiVersion: v1
+kind: Pod
+metadata:
+ name: {{ .Chart.Name }}
+ namespace: "{{ .Values.nsPrefix }}"
+spec:
+ containers:
+ - name: {{ .Chart.Name }}
+ image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
+ imagePullPolicy: {{ .Values.image.pullPolicy }}
+ envFrom:
+ - configMapRef:
+ name: global-onap-configmap
+ env:
+ - name: NAMESPACE
+ valueFrom:
+ fieldRef:
+ fieldPath: metadata.namespace
+ - name: NAMESPACE_PREFIX
+ value: {{ .Values.nsPrefix }}
+ - name: DOCKER_SHARE_PATH
+ value: {{ .Values.dockerSharePath }}
+ volumeMounts:
+ - name: config-init-root
+ mountPath: /config-init/
+ volumes:
+ - name: config-init-root
+ hostPath:
+ path: {{ .Values.dockerSharePath }}
+ restartPolicy: Never
\ No newline at end of file