Run all components in one namespace
[oom.git] / kubernetes / aai / templates / aai-resources-traversal-configmap.yaml
1 #{{ if not .Values.disableAaiAaiResources }}
2 apiVersion: v1
3 kind: ConfigMap
4 metadata:
5   name: aai-chef-config-configmap
6   namespace: {{ .Values.nsPrefix }}
7 data:
8 {{ tpl (.Files.Glob "resources/config/aai-data/chef-config/dev/.knife/solo.rb").AsConfig . | indent 2 }}
9 ---
10 apiVersion: v1
11 kind: ConfigMap
12 metadata:
13   name: aai-resources-environments-configmap
14   namespace: {{ .Values.nsPrefix }}
15 data:
16 {{ tpl (.Files.Glob "resources/config/aai-data/environments/*").AsConfig . | indent 2 }}
17 ---
18 apiVersion: v1
19 kind: ConfigMap
20 metadata:
21   name: aai-resources-log-configmap
22   namespace: {{ .Values.nsPrefix }}
23 data:
24 {{ tpl (.Files.Glob "resources/config/log/resources/logback.xml").AsConfig . | indent 2 }}
25 ---
26 apiVersion: v1
27 kind: ConfigMap
28 metadata:
29   name: aai-traversal-log-configmap
30   namespace: {{ .Values.nsPrefix }}
31 data:
32 {{ tpl (.Files.Glob "resources/config/log/traversal/logback.xml").AsConfig . | indent 2 }}
33 #{{ end }}