mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
5c870d18da
- Setting IPv4 & IPv6 forwarding - Setting `sysctl:net.bridge.bridge-nf-call-iptables` and `bridge-nf-call-ip6tables` to enabled since it is disabled by default on some CentOS systems
23 lines
315 B
YAML
23 lines
315 B
YAML
---
|
|
|
|
- hosts: k3s-cluster
|
|
gather_facts: yes
|
|
become: yes
|
|
roles:
|
|
- { role: prereq }
|
|
- { 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 }
|