Enable RBAC by default in hack/local-up-cluster.sh

Since hack/local-up-cluster.sh checks https API port
after commit 413ab26df9,
RBAC should be enabled by default to avoid TLS port
access denied.

Fixes #49319
pull/6/head
mtanino 2017-07-20 15:05:26 -04:00
parent c35bf2aa7b
commit f1351e34e7
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ ENABLE_CLUSTER_DASHBOARD=${KUBE_ENABLE_CLUSTER_DASHBOARD:-false}
ENABLE_APISERVER_BASIC_AUDIT=${ENABLE_APISERVER_BASIC_AUDIT:-false}
# RBAC Mode options
ENABLE_RBAC=${ENABLE_RBAC:-false}
ENABLE_RBAC=${ENABLE_RBAC:-true}
AUTHORIZATION_MODE=${AUTHORIZATION_MODE:-""}
KUBECONFIG_TOKEN=${KUBECONFIG_TOKEN:-""}
AUTH_ARGS=${AUTH_ARGS:-""}