django-helm-chart/templates/_tplvalues.tpl

12 lines
352 B
Smarty

{{/*
Renders a value that contains template.
Usage:
{{ include "django.tplvalues.render" ( dict "value" .Values.path.to.the.Value "context" $) }}
*/}}
{{- define "django.tplvalues.render" -}}
{{- if typeIs "string" .value }}
{{- tpl .value .context }}
{{- else }}
{{- tpl (.value | toYaml) .context }}
{{- end }}
{{- end -}}