arttor / helmify

Creates Helm chart from Kubernetes yaml
MIT License
1.48k stars 136 forks source link

feat: templatize values #112

Open vbehar opened 1 year ago

vbehar commented 1 year ago

instead of using raw values - such as {{ .Values.some.thing }} - let's wrap them with the tpl 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.

arttor commented 1 year ago

Hi @vbehar! Thank you for your contribution. The proposal looks very interesting but i see several potential problems: