mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-09 06:39:45 +00:00
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 }
|