mirror of
https://github.com/Thumbscrew/k8s-charts.git
synced 2024-11-10 16:13:50 +00:00
11 lines
242 B
YAML
11 lines
242 B
YAML
{{- if .Values.customConfig.enabled -}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "cinny.fullname" . }}
|
|
data:
|
|
{{- with .Values.customConfig.data }}
|
|
config: |
|
|
{{- toPrettyJson . | nindent 4 -}}
|
|
{{- end }}
|
|
{{- end }} |