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

This commit is contained in:
Maxime Guyot 2019-02-20 08:24:29 +01:00 committed by Kubernetes Prow Robot
parent eafab9636f
commit 323d788f48
2 changed files with 4 additions and 0 deletions

View file

@ -53,3 +53,4 @@ dashboard_tls_cert_file: dashboard.crt
# Override dashboard default settings # Override dashboard default settings
dashboard_token_ttl: 900 dashboard_token_ttl: 900
dashboard_skip_login: false

View file

@ -163,6 +163,9 @@ spec:
- --tls-cert-file={{ dashboard_tls_cert_file }} - --tls-cert-file={{ dashboard_tls_cert_file }}
{% else %} {% else %}
- --auto-generate-certificates - --auto-generate-certificates
{% endif %}
{% if dashboard_skip_login %}
- --enable-skip-login
{% endif %} {% endif %}
- --authentication-mode=token{% if kube_basic_auth|default(false) %},basic{% endif %} - --authentication-mode=token{% if kube_basic_auth|default(false) %},basic{% endif %}
# Uncomment the following line to manually specify Kubernetes API server Host # Uncomment the following line to manually specify Kubernetes API server Host