k8s-charts/charts/cinny/templates/configmap.yaml

11 lines
242 B
YAML
Raw Permalink Normal View History

2022-11-17 22:41:49 +00:00
{{- if .Values.customConfig.enabled -}}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "cinny.fullname" . }}
data:
{{- with .Values.customConfig.data }}
config: |
{{- toPrettyJson . | nindent 4 -}}
{{- end }}
{{- end }}