Skip to content
Snippets Groups Projects
Commit 323d788f authored by Maxime Guyot's avatar Maxime Guyot Committed by Kubernetes Prow Robot
Browse files

Add support for --enable-skip-login in Dashboard (#4265)

parent eafab963
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment