mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-10 05:30:26 +00:00
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.
This commit is contained in:
@@ -1779,7 +1779,7 @@ function start-kube-addons {
|
||||
if [[ "${REGISTER_MASTER_KUBELET:-false}" == "true" ]]; then
|
||||
setup-addon-manifests "addons" "rbac/legacy-kubelet-user"
|
||||
else
|
||||
setup-addon-manifests "addons" "rbac/legacy-kubelet-user-disabled"
|
||||
setup-addon-manifests "addons" "rbac/legacy-kubelet-user-disable"
|
||||
fi
|
||||
|
||||
if [[ "${ENABLE_POD_SECURITY_POLICY:-}" == "true" ]]; then
|
||||
|
Reference in New Issue
Block a user