summaryrefslogtreecommitdiffstats
path: root/kubernetes/robot/templates/robot-dep-configmap.yaml
blob: 94e359dce7691b1478ebff04ee65500965c0a878 (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
#{{ if not .Values.disableRobot }}
apiVersion: v1
kind: ConfigMap
metadata:
  name: robot-eteshare-configmap
  namespace: {{ .Values.nsPrefix }}
data:
{{ tpl (.Files.Glob "resources/config/eteshare/config/*").AsConfig . | indent 2 }}
---
apiVersion: v1
kind: ConfigMap
metadata:
  name: robot-resources-configmap
  namespace: {{ .Values.nsPrefix }}
data:
{{ tpl (.Files.Glob "resources/config/robot/resources/*").AsConfig . | indent 2 }}
---
apiVersion: v1
kind: ConfigMap
metadata:
  name: lighttpd-authorization-configmap
  namespace: {{ .Values.nsPrefix }}
data:
{{ tpl (.Files.Glob "resources/config/authorization").AsConfig . | indent 2 }}
#{{ end }}