prole/infrastructure/playbooks/site.yml
chrisfu 772a36294e ansible: configure K3s cluster and update inventory
- Added `k3s_hosts` group to the inventory and associated host entries.
- Updated `site.yml` to include roles for disabling swap and setting up the K3s cluster.
2026-01-21 10:23:05 -08:00

30 lines
450 B
YAML

---
- name: Pi-hole DNS and resilience configuration
hosts: pihole
become: true
roles:
- pihole_dns
- name: Samba AD DNS reverse zones and PTRs
hosts: ad_dc
become: true
roles:
- samba_reverse_dns
- hosts: Linux_Hosts
become: true
roles:
- rsyslog
- name: Disable swap on K3s hosts
hosts: k3s_hosts
become: true
roles:
- no_swap
- name: K3s Cluster Setup
hosts: k3s_hosts
become: true
roles:
- k3s