Files
common/starter/templates/configmap.yaml
Konstantin Grachev 460c4b6c5c
All checks were successful
continuous-integration/drone/push Build is passing
feat: simplify starter
2023-03-02 23:21:08 +03:00

13 lines
259 B
YAML

{{- if not .Values.existingConfigmap }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "common.fullname" . }}
labels:
{{- include "common.labels" . | nindent 4 }}
data:
{{- if .Values.config.debug }}
DEBUG: true
{{- end }}
{{- end }}