* Tweaked oauth-proxy deployment template to accept boolean extraArgs
* Prior to this commit, values.yaml extraArgs only allowed setting of
`key=value` pairs. However, some oauth2_proxy flags are boolean
flags with only `key` and no `value`. In the example below,
`ssl-insecure-skip-verify` is one such flag.
extraArgs:
provider: "oidc"
ssl-insecure-skip-verify:
cookie-secure: "true"
* This commit allows boolean flags to be added to extraArgs as shown
above by `ssl-insecure-skip-verify`.
* Update Chart.yaml
* incubator/oauth-proxy Allow path to be configured
Allow path to be configured on the ingress. If one has a vhost that
needs to be shared with oauth proxy, then we need to be able to proxy
pass just /oauth2 to the proxy. Thus allowing it to be configured here.
* Update Chart version
* Fix variable inside range loop.