2019-04-26 19:10:27 +00:00
|
|
|
---
|
|
|
|
|
2020-05-12 20:21:00 +00:00
|
|
|
- hosts: k3s_cluster
|
2019-04-26 19:10:27 +00:00
|
|
|
gather_facts: yes
|
|
|
|
become: yes
|
|
|
|
roles:
|
2019-09-28 22:19:18 +00:00
|
|
|
- { role: prereq }
|
2019-04-26 19:10:27 +00:00
|
|
|
- { role: download }
|
|
|
|
- { role: raspbian }
|
|
|
|
|
|
|
|
|
|
|
|
- hosts: master
|
|
|
|
# gather_facts: yes
|
|
|
|
become: yes
|
|
|
|
roles:
|
|
|
|
- { role: k3s/master }
|
|
|
|
|
|
|
|
- hosts: node
|
|
|
|
# gather_facts: yes
|
|
|
|
become: yes
|
|
|
|
roles:
|
|
|
|
- { role: k3s/node }
|