Files
school-dev-k8s/practice/13.templating/wordpress/charts/common/templates/_tplvalues.tpl
T
Marsel Ibraev f44beb51a9 Add basic info
2021-09-24 11:51:02 +03:00

14 lines
391 B
Smarty

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