renovate-charts/templates/configmap.yaml
Markus Pesch f83d91d991
All checks were successful
continuous-integration/drone/push Build is passing
Initial Commit
2021-10-28 19:44:50 +02:00

16 lines
385 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "renovate.fullname" . }}-env
labels:
{{- include "renovate.labels" . | nindent 4 }}
data:
{{- if not (hasKey .Values.renovate "env") -}}
{{- $_ := set .Values "env" dict -}}
{{- end -}}
{{/* SETUP CONFIG */}}
{{ range $key, $value := .Values.renovate.env }}
{{ upper $key}}: {{ quote $value }}
{{ end }}