However, I have a problem with commas in no_proxy variable. I am aware that I have to escape commas, but even if I add two \ helm-install fails.
helm_v3 install --namespace cattle-system --repo https://releases.rancher.com/server-charts/stable --set-string hostname=rancher-test.com --set-string http_proxy=http://example-wproxy.test.com:8080 --set-string https_proxy=https://example-wproxy.test.com:8443 --set-string ingress.tls.source=secret --set-string rancher rancher
Error: must either provide a name or specify --generate-name
From job logs it seems that no_proxy part is missing, there is nothing atfer last --set-string
And when I don’t escape comma i get an error about it:
helm_v3 install --namespace cattle-system --repo https://releases.rancher.com/server-charts/stable --set-string hostname=rancher-test.com --set-string http_proxy=http://example-wproxy.test.com:8080 --set-string https_proxy=https://example-wproxy.test.com:8443 --set-string ingress.tls.source=secret --set-string no_proxy=127.0.0.0/8,10.0.1.0/8 rancher rancher
Error: failed parsing --set-string data: key map "10" has no value
I also tried adding a different amount of \ and other " and more more, unfortunately with no success.
My k3s version is v1.20.4+k3s1
Is it even possible to add commas in variables of HelmChart object? and how to fix it ?