blob: 78235bcd4f0884b8223b4511a1ed3d82a6af877a [file] [log] [blame]
kj9bf27312018-03-19 15:07:44 +02001# this is a shared resource for subcharts
2apiVersion: v1
3kind: ConfigMap
4metadata:
5 name: aai-filebeat
6 namespace: {{ include "common.namespace" . }}
7data:
8{{ tpl (.Files.Glob "resources/config/log/filebeat/*").AsConfig . | indent 2 }}
9---
10apiVersion: v1
11kind: ConfigMap
12metadata:
13 name: aai-deployment-configmap
14 namespace: {{ include "common.namespace" . }}
15data:
16{{ tpl (.Files.Glob "resources/config/haproxy/*").AsConfig . | indent 2 }}
17---
18# this is a shared resource for subcharts
19apiVersion: v1
20kind: ConfigMap
21metadata:
22 name: aai-chef-config
23 namespace: {{ include "common.namespace" . }}
24data:
25{{ tpl (.Files.Glob "resources/config/aai-data/chef-config/dev/.knife/solo.rb").AsConfig . | indent 2 }}
26---
27# this is a shared resource for subcharts
28apiVersion: v1
29kind: ConfigMap
30metadata:
31 name: aai-resources-environments
32 namespace: {{ include "common.namespace" . }}
33data:
34{{ tpl (.Files.Glob "resources/config/aai-data/environments/*").AsConfig . | indent 2 }}
35