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