Helm Template Function Printf: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
Line 16: Line 16:


=Print the Type=
=Print the Type=
<syntaxhighlight lang='yaml'>
{{ printf "myVar type: %T" .Values.myVar }}
</syntaxhighlight>


=Additional Examples=
=Additional Examples=

Latest revision as of 09:38, 5 January 2021

Internal

Overview

{{ printf "%s-blue" .Values.nuance }}

This also works:

{{ .Values.nuance | printf "%s-blue" }}

Print the Type

{{ printf "myVar type: %T" .Values.myVar }}

Additional Examples

(list "A" (printf "B.%s" .Release.Namespace) "C")