Open vbehar opened 1 year ago
instead of using raw values - such as {{ .Values.some.thing }} - let's wrap them with the tpl function.
{{ .Values.some.thing }}
tpl
the previous example would then be rendered as {{ tpl (.Values.some.thing) $ }}
{{ tpl (.Values.some.thing) $ }}
So that we can reference other values from inside our values for example.
Hi @vbehar! Thank you for your contribution. The proposal looks very interesting but i see several potential problems:
instead of using raw values - such as
{{ .Values.some.thing }}
- let's wrap them with thetpl
function.the previous example would then be rendered as
{{ tpl (.Values.some.thing) $ }}
So that we can reference other values from inside our values for example.