mirror of https://github.com/k3s-io/k3s
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
parent
c35bf2aa7b
commit
f1351e34e7
|
@ -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:-""}
|
||||
|
|
Loading…
Reference in New Issue