My custom Helm chart contains a variable which is taking strings list as a parameter,
values.yaml
myList: []
I need to pass the myList as a parameter,
helm upgrade --install myService helm/my-service-helm --set myList=[string1,string2]
Is there any possible way to do this?
In addition please take a look at escape characters:
--set foo={a\,b\,c}
Array values can be specified using curly braces: --set foo={a,b,c}.