mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
39e2e45cc2
Ansible provisionning contrib
22 lines
292 B
YAML
22 lines
292 B
YAML
---
|
|
|
|
- hosts: k3s-cluster
|
|
gather_facts: yes
|
|
become: yes
|
|
roles:
|
|
- { 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 }
|