oauth2-proxy / manifests

For hosting manifests to allow for the deployment of OAuth2-Proxy/OAuth2-Proxy
Apache License 2.0
170 stars 153 forks source link

wrong type for value; expected string; got bool #133

Closed michalsabol2 closed 1 year ago

michalsabol2 commented 1 year ago

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 1 year ago

@michalsabol2

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

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

michalsabol2 commented 1 year ago

It works, thank you