Helm Named Template Recipes
Jump to navigation
Jump to search
Internal
Variable Equivalent
Define the partial in _helpers.tpl:
{{- define "mychart.nuancedColor" -}}
{{- printf "%s-%s" .Values.nuance .Values.color -}}
{{- end -}}
Use it:
...
nuancedColor: {{ template "mychart.nuancedColor" . }}
...