Merge "Update APPC OOM appc.properties file"
[oom.git] / kubernetes / aai / templates / configmap.yaml
1 # this is a shared resource for subcharts
2 apiVersion: v1
3 kind: ConfigMap
4 metadata:
5   name: aai-filebeat
6   namespace: {{ include "common.namespace" . }}
7 data:
8 {{ tpl (.Files.Glob "resources/config/log/filebeat/*").AsConfig . | indent 2 }}
9 ---
10 apiVersion: v1
11 kind: ConfigMap
12 metadata:
13   name: aai-deployment-configmap
14   namespace: {{ include "common.namespace" . }}
15 data:
16 {{ tpl (.Files.Glob "resources/config/haproxy/haproxy.cfg").AsConfig . | indent 2 }}
17 ---
18 apiVersion: v1
19 kind: Secret
20 metadata:
21   name: aai-haproxy-secret
22   namespace: {{ include "common.namespace" . }}
23 type: Opaque
24 data:
25 {{ tpl (.Files.Glob "resources/config/haproxy/aai.pem").AsSecrets . | indent 2 }}
26 # This is a shared key for both resources and traversal
27 ---
28 apiVersion: v1
29 kind: Secret
30 metadata:
31   name: aai-auth-secret
32   namespace: {{ include "common.namespace" . }}
33 type: Opaque
34 data:
35 {{ tpl (.Files.Glob "resources/config/aai/aai_keystore").AsSecrets . | indent 2 }}
36
37