summaryrefslogtreecommitdiffstats
path: root/templates/configmap.yaml
diff options
context:
space:
mode:
authorvaibhav_16dec <vaibhav.chopra@amdocs.com>2018-03-15 07:05:10 +0000
committervaibhav_16dec <vaibhav.chopra@amdocs.com>2018-03-19 06:51:16 +0000
commit22c7c25610e7c78b7d5d68f54b5bd9525a5c6e9b (patch)
tree219207d4025bc1db4395edfccb36afa48233a455 /templates/configmap.yaml
parent10d510b16ad0e7a1217be89369fcb3acbb257b8b (diff)
Robot Helm Chart Standardization
Issue-ID: OOM-728 Change-Id: I2e6b298a78e7d10c47ce1d531bf089c928a40284 Signed-off-by: vaibhav_16dec <vaibhav.chopra@amdocs.com>
Diffstat (limited to 'templates/configmap.yaml')
-rw-r--r--templates/configmap.yaml23
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/configmap.yaml b/templates/configmap.yaml
new file mode 100644
index 0000000..fd26992
--- /dev/null
+++ b/templates/configmap.yaml
@@ -0,0 +1,23 @@
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: {{ include "common.name" . }}-eteshare-configmap
+ namespace: {{ include "common.namespace" . }}
+data:
+{{ tpl (.Files.Glob "resources/config/eteshare/config/*").AsConfig . | indent 2 }}
+---
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: {{ include "common.name" . }}-resources-configmap
+ namespace: {{ include "common.namespace" . }}
+data:
+{{ tpl (.Files.Glob "resources/config/robot/resources/*").AsConfig . | indent 2 }}
+---
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: {{ include "common.name" . }}-lighttpd-authorization-configmap
+ namespace: {{ include "common.namespace" . }}
+data:
+{{ tpl (.Files.Glob "resources/config/authorization").AsConfig . | indent 2 }}