aboutsummaryrefslogtreecommitdiffstats
path: root/helm/ves-client/templates/configmap.yaml
blob: 4717c38577dc982ae4b083feca9190f4045a5f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
apiVersion: v1
kind: ConfigMap
metadata:
  name: {{ .Chart.Name }}-configmap
binaryData:
  {{- $files := .Files }}
  {{- range $key, $value := .Files }}
  {{- if hasPrefix "resources/" $key }}
  {{ $key | trimPrefix "resources/" }}: {{ $files.Get $key | b64enc | quote }} 
  {{- end }}
  {{- end }}