Rename `k3s_become_for_all` for `k3s_become`.

This commit is contained in:
Alejo Diaz 2022-01-07 13:32:25 -03:00
parent 252b87bf65
commit 410a5bf009
No known key found for this signature in database
GPG Key ID: FF146C79074B1CE0
3 changed files with 3 additions and 3 deletions

View File

@ -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
```

View File

@ -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:

View File

@ -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
```