I have this template in my helm chart:
{{ $appEnvs := list "dev" "uat" }}
{{- range $env := $appEnvs }}
...
{{- end }}
I am getting this error :
<$appEnvs>: range can't iterate over [dev uat]
I spent longtime trying many things like :
{{- range $env := toYaml $appEnvs }}
and {{- range $env := tuple $appEnvs }}
and others.. but no way.
However, when i put the list directly without variable , it works.. I mean {{- range $env := list "dev" "uat" }}
works !?!?
How to iterate over a VARIABLE created by the sprig function list
?
output
output