blob: 00d2a80d9c793e2ff8629c0d07cebdf1d4413b56 [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:
Kajur, Harish (vk250x)450e3632018-04-26 11:26:45 -040016{{ tpl (.Files.Glob "resources/config/haproxy/haproxy.cfg").AsConfig . | indent 2 }}
17---
18apiVersion: v1
19kind: Secret
20metadata:
21 name: aai-haproxy-secret
22 namespace: {{ include "common.namespace" . }}
23type: Opaque
24data:
25{{ tpl (.Files.Glob "resources/config/haproxy/aai.pem").AsSecrets . | indent 2 }}
26# This is a shared key for both resources and traversal
27---
28apiVersion: v1
29kind: Secret
30metadata:
31 name: aai-auth-secret
32 namespace: {{ include "common.namespace" . }}
33type: Opaque
34data:
35{{ tpl (.Files.Glob "resources/config/aai/aai_keystore").AsSecrets . | indent 2 }}
vagrant1a3a3552018-03-10 23:56:32 +000036
kj9bf27312018-03-19 15:07:44 +020037