ContainerImage.JSONServer/charts/json-server/templates/configmap.yaml
Danny Bessems ec3b2e3286
Some checks failed
continuous-integration/drone/push Build is failing
Fix variable name
2023-05-13 17:38:19 +02:00

10 lines
282 B
YAML

{{- if not .Values.jsonserver.data.existingConfigMap }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Release.Name }}-configmap
data:
db.json: |
{{ include "common.tplvalues.render" ( dict "value" .Values.jsonserver.data.configInline "context" $) | indent 4 }}
{{- end -}}