| # 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/haproxy.cfg").AsConfig . | indent 2 }} |
| --- |
| apiVersion: v1 |
| kind: Secret |
| metadata: |
| name: aai-haproxy-secret |
| namespace: {{ include "common.namespace" . }} |
| type: Opaque |
| data: |
| {{ tpl (.Files.Glob "resources/config/haproxy/aai.pem").AsSecrets . | indent 2 }} |
| # This is a shared key for both resources and traversal |
| --- |
| apiVersion: v1 |
| kind: Secret |
| metadata: |
| name: aai-auth-secret |
| namespace: {{ include "common.namespace" . }} |
| type: Opaque |
| data: |
| {{ tpl (.Files.Glob "resources/config/aai/aai_keystore").AsSecrets . | indent 2 }} |
| |
| |