blob: 55dea653cd91f150c9de37e82e0536799759fc1f [file] [log] [blame]
mayankg27039f44dc22018-02-06 16:40:19 +00001#{{ if not .Values.disableAaiSparkyBe }}
2apiVersion: v1
3kind: ConfigMap
4metadata:
5 name: sparky-be-configmap
6 namespace: {{ .Values.nsPrefix }}-aai
7data:
8{{ tpl (.Files.Glob "resources/config/sparky-be/appconfig/*").AsConfig . | indent 2 }}
9---
10apiVersion: v1
11kind: ConfigMap
12metadata:
13 name: sparky-be-model-configmap
14 namespace: {{ .Values.nsPrefix }}-aai
15data:
16{{ tpl (.Files.Glob "resources/config/sparky-be/appconfig/model/*").AsConfig . | indent 2 }}
17---
18apiVersion: v1
19kind: ConfigMap
20metadata:
21 name: sparky-be-portal-configmap
22 namespace: {{ .Values.nsPrefix }}-aai
23data:
24{{ tpl (.Files.Glob "resources/config/sparky-be/appconfig/portal/*").AsConfig . | indent 2 }}
25---
26apiVersion: v1
27kind: Secret
28metadata:
29 name: sparky-be-secret
30 namespace: {{ .Values.nsPrefix }}-aai
31type: Opaque
32data:
33{{ tpl (.Files.Glob "resources/config/sparky-be/appconfig/auth/*").AsSecrets . | indent 2 }}
34#{{ end }}