summaryrefslogtreecommitdiffstats
path: root/kubernetes/aai/templates/configmap.yaml
blob: 78235bcd4f0884b8223b4511a1ed3d82a6af877a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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 }}