Allows tls verify skip on webhook auth url (#6472)
This commit is contained in:
parent
91742055e0
commit
bfe143808f
2 changed files with 2 additions and 0 deletions
|
@ -119,6 +119,7 @@ kube_basic_auth: false
|
||||||
kube_token_auth: false
|
kube_token_auth: false
|
||||||
kube_oidc_auth: false
|
kube_oidc_auth: false
|
||||||
kube_webhook_token_auth: false
|
kube_webhook_token_auth: false
|
||||||
|
kube_webhook_token_auth_url_skip_tls_verify: false
|
||||||
|
|
||||||
## Variables for OpenID Connect Configuration https://kubernetes.io/docs/admin/authentication/
|
## Variables for OpenID Connect Configuration https://kubernetes.io/docs/admin/authentication/
|
||||||
## To use OpenID you have to deploy additional an OpenID Provider (e.g Dex, Keycloak, ...)
|
## To use OpenID you have to deploy additional an OpenID Provider (e.g Dex, Keycloak, ...)
|
||||||
|
|
|
@ -3,6 +3,7 @@ clusters:
|
||||||
- name: webhook-token-auth-cluster
|
- name: webhook-token-auth-cluster
|
||||||
cluster:
|
cluster:
|
||||||
server: {{ kube_webhook_token_auth_url }}
|
server: {{ kube_webhook_token_auth_url }}
|
||||||
|
insecure-skip-tls-verify: {{ kube_webhook_token_auth_url_skip_tls_verify }}
|
||||||
|
|
||||||
# users refers to the API server's webhook configuration.
|
# users refers to the API server's webhook configuration.
|
||||||
users:
|
users:
|
||||||
|
|
Loading…
Reference in a new issue