diff --git a/documentation/quickstart-cluster.md b/documentation/quickstart-cluster.md index 431380d..e623c09 100644 --- a/documentation/quickstart-cluster.md +++ b/documentation/quickstart-cluster.md @@ -84,7 +84,7 @@ Here is our playbook for the k3s cluster (`cluster.yml`): - name: Build a cluster with a single control node hosts: k3s_cluster vars: - k3s_become_for_all: true + k3s_become: true roles: - role: xanmanning.k3s ``` diff --git a/documentation/quickstart-ha-cluster.md b/documentation/quickstart-ha-cluster.md index 23fb271..28e3b19 100644 --- a/documentation/quickstart-ha-cluster.md +++ b/documentation/quickstart-ha-cluster.md @@ -90,7 +90,7 @@ Here is our playbook for the k3s cluster (`ha_cluster.yml`): - name: Build a cluster with HA control plane hosts: k3s_cluster vars: - k3s_become_for_all: true + k3s_become: true k3s_etcd_datastore: true k3s_use_experimental: true # Note this is required for k3s < v1.19.5+k3s1 roles: diff --git a/documentation/quickstart-single-node.md b/documentation/quickstart-single-node.md index 1069090..a8dcf1f 100644 --- a/documentation/quickstart-single-node.md +++ b/documentation/quickstart-single-node.md @@ -66,7 +66,7 @@ Here is our playbook for a single node k3s cluster (`single_node.yml`): - name: Build a single node k3s cluster hosts: kube-0 vars: - k3s_become_for_all: true + k3s_become: true roles: - role: xanmanning.k3s ```