summaryrefslogtreecommitdiffstats
path: root/kubernetes/aai/templates/configmap.yaml
diff options
context:
space:
mode:
authorMandeep Khinda <Mandeep.Khinda@amdocs.com>2018-03-27 18:15:20 +0000
committerGerrit Code Review <gerrit@onap.org>2018-03-27 18:15:20 +0000
commit262bc57bb3be7d222fe6e521344a8fd7e918be8c (patch)
tree6edab70e7c678a5f51cf975fba29e368cde76e82 /kubernetes/aai/templates/configmap.yaml
parentcb047cbcd492cfac220745b6509912de29b9344c (diff)
parent9bf2731ab42d49b3ac89d07e0e1282f685151c57 (diff)
Merge "Add standardized helm chart for aai"
Diffstat (limited to 'kubernetes/aai/templates/configmap.yaml')
-rw-r--r--kubernetes/aai/templates/configmap.yaml35
1 files changed, 35 insertions, 0 deletions
diff --git a/kubernetes/aai/templates/configmap.yaml b/kubernetes/aai/templates/configmap.yaml
new file mode 100644
index 0000000000..78235bcd4f
--- /dev/null
+++ b/kubernetes/aai/templates/configmap.yaml
@@ -0,0 +1,35 @@
+# this is a shared resource for subcharts
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: aai-filebeat
+ namespace: {{ include "common.namespace" . }}
+data:
+{{ tpl (.Files.Glob "resources/config/log/filebeat/*").AsConfig . | indent 2 }}
+---
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: aai-deployment-configmap
+ namespace: {{ include "common.namespace" . }}
+data:
+{{ tpl (.Files.Glob "resources/config/haproxy/*").AsConfig . | indent 2 }}
+---
+# this is a shared resource for subcharts
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: aai-chef-config
+ namespace: {{ include "common.namespace" . }}
+data:
+{{ tpl (.Files.Glob "resources/config/aai-data/chef-config/dev/.knife/solo.rb").AsConfig . | indent 2 }}
+---
+# this is a shared resource for subcharts
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: aai-resources-environments
+ namespace: {{ include "common.namespace" . }}
+data:
+{{ tpl (.Files.Glob "resources/config/aai-data/environments/*").AsConfig . | indent 2 }}
+