kj | 9bf2731 | 2018-03-19 15:07:44 +0200 | [diff] [blame] | 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: |
Kajur, Harish (vk250x) | 450e363 | 2018-04-26 11:26:45 -0400 | [diff] [blame^] | 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 }} |
vagrant | 1a3a355 | 2018-03-10 23:56:32 +0000 | [diff] [blame] | 36 | |
kj | 9bf2731 | 2018-03-19 15:07:44 +0200 | [diff] [blame] | 37 | |