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