21 lines
478 B
Smarty
21 lines
478 B
Smarty
|
{{- define "lib.config.env" -}}
|
||
|
{{- range $k, $v := .Values.env }}
|
||
|
{{- $customName := printf "%s-%s" (include "chart.fullname" $) $k }}
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
{{- if not $v.sensitive }}
|
||
|
kind: ConfigMap
|
||
|
{{- include "lib.metadata" (dict "Context" $ "customName" $customName)}}
|
||
|
data:
|
||
|
{{- else }}
|
||
|
kind: Secret
|
||
|
{{- include "lib.metadata" (dict "Context" $ "customName" $customName)}}
|
||
|
stringData:
|
||
|
{{- end }}
|
||
|
{{- with $v.data }}
|
||
|
{{ toYaml . | indent 2}}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
{{- end -}}
|
||
|
|