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: |
| 16 | {{ tpl (.Files.Glob "resources/config/haproxy/*").AsConfig . | indent 2 }} |
| 17 | --- |
| 18 | # this is a shared resource for subcharts |
| 19 | apiVersion: v1 |
| 20 | kind: ConfigMap |
| 21 | metadata: |
| 22 | name: aai-chef-config |
| 23 | namespace: {{ include "common.namespace" . }} |
| 24 | data: |
| 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 |
| 28 | apiVersion: v1 |
| 29 | kind: ConfigMap |
| 30 | metadata: |
| 31 | name: aai-resources-environments |
| 32 | namespace: {{ include "common.namespace" . }} |
| 33 | data: |
| 34 | {{ tpl (.Files.Glob "resources/config/aai-data/environments/*").AsConfig . | indent 2 }} |
| 35 | |