Add support for --enable-skip-login in Dashboard (#4265)
This commit is contained in:
parent
eafab9636f
commit
323d788f48
2 changed files with 4 additions and 0 deletions
|
@ -53,3 +53,4 @@ dashboard_tls_cert_file: dashboard.crt
|
|||
|
||||
# Override dashboard default settings
|
||||
dashboard_token_ttl: 900
|
||||
dashboard_skip_login: false
|
||||
|
|
|
@ -163,6 +163,9 @@ spec:
|
|||
- --tls-cert-file={{ dashboard_tls_cert_file }}
|
||||
{% else %}
|
||||
- --auto-generate-certificates
|
||||
{% endif %}
|
||||
{% if dashboard_skip_login %}
|
||||
- --enable-skip-login
|
||||
{% endif %}
|
||||
- --authentication-mode=token{% if kube_basic_auth|default(false) %},basic{% endif %}
|
||||
# Uncomment the following line to manually specify Kubernetes API server Host
|
||||
|
|
Loading…
Reference in a new issue