oauth2-proxy/manifests

wrong type for value; expected string; got bool

michalsabol2 opened this issue · 2 comments

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

@michalsabol2

The currently workaround would be --set-string instead using --set

--set-string extraArgs.set-authorization-header="true"

It works,
thank you