I am working on helmfile
and stuck at the point where I want the conditional variable declaration. Roughly like this but in go standard templates.
ENV = "prod"
folder = ""
if ENV == "prod":
folder = "production"
elif ENV == "qa"
folder == "qa"
else
folder = "dev"
How can I achieve something like that? Thanks
If you do have the Sprig functions available to you (in both standard Helm and in Helmfile) then you can create a
dict
, then look up a value in it (probably using the standardindex
function) with adefault
.Helmfile also has its own version of
get
that includes defaulting functionality; so in Helmfile specifically (but not in core Gotext/template
or the Sprig extensions, so not standard Helm) you can sayBoth of these in Python would look like:
which should be equivalent to your logic.