blob: 590608b566d6029161c89ffb2b5b33a2432bfc38 [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 }}
mayankg270338d6d7b2018-02-07 05:29:22 +000034---
35apiVersion: v1
36kind: ConfigMap
37metadata:
38 name: aai-sparky-be-log-configmap
39 namespace: {{ .Values.nsPrefix }}-aai
40data:
41{{ tpl (.Files.Glob "resources/config/log/sparky-be/logback.xml").AsConfig . | indent 2 }}
mayankg27039f44dc22018-02-06 16:40:19 +000042#{{ end }}