wrong type for value; expected string; got bool
michalsabol2 opened this issue · 2 comments
michalsabol2 commented
Hello,
for setting> --set extraArgs.set-authorization-header="true"
there is an error:
Error: template: oauth2-proxy/templates/deployment.yaml:76:32: executing "oauth2-proxy/templates/deployment.yaml" at <$value>: wrong type for value; expected string; got bool
for chart version 6.9.0 (6.8.0 works fine)
Have a nice day
jkroepke commented
The currently workaround would be --set-string instead using --set
--set-string extraArgs.set-authorization-header="true"
michalsabol2 commented
It works,
thank you