mirror of https://github.com/k3s-io/k3s
Update configure-helper.sh
fixed a typo which was causing script to break while creating a GKE cluster. Specifically, the line "setup-addon-manifests "addons" "rbac/legacy-kubelet-user-disabled" was meant to refer to the directory cluster/addons/rbac/legacy-kubelet-user-disable. The extra "d" at the end of disable was causing the script to break.pull/6/head
parent
899f7ff97d
commit
f78775099a
|
@ -1779,7 +1779,7 @@ function start-kube-addons {
|
||||||
if [[ "${REGISTER_MASTER_KUBELET:-false}" == "true" ]]; then
|
if [[ "${REGISTER_MASTER_KUBELET:-false}" == "true" ]]; then
|
||||||
setup-addon-manifests "addons" "rbac/legacy-kubelet-user"
|
setup-addon-manifests "addons" "rbac/legacy-kubelet-user"
|
||||||
else
|
else
|
||||||
setup-addon-manifests "addons" "rbac/legacy-kubelet-user-disabled"
|
setup-addon-manifests "addons" "rbac/legacy-kubelet-user-disable"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${ENABLE_POD_SECURITY_POLICY:-}" == "true" ]]; then
|
if [[ "${ENABLE_POD_SECURITY_POLICY:-}" == "true" ]]; then
|
||||||
|
|
Loading…
Reference in New Issue