mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 15:04:31 +00:00
- Installer: Updated k3s deployment logic and configuration generation. - k3s Role: Implemented token drift protection to verify Vault secrets against live node tokens. - DNS: Enhanced samba_reverse_dns role to support multiple reverse zones. - Service Init: Updated initialization scripts and status reporting. - Infrastructure: Added prole management role and k3s diagnostic playbook. - Configuration: Updated prole.cfg and added vaulted group variables.
41 lines
618 B
YAML
41 lines
618 B
YAML
---
|
|
- name: iSCSI hosts and filesystem mounts
|
|
hosts: iscsi
|
|
become: true
|
|
roles:
|
|
- iscsi
|
|
|
|
- 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_ad_dc
|
|
- samba_dns
|
|
- samba_reverse_dns
|
|
|
|
- hosts: linux_hosts
|
|
become: true
|
|
roles:
|
|
- local_user
|
|
- rsyslog
|
|
- prole
|
|
|
|
- name: K3s cgroup prerequisites
|
|
hosts: k3s_hosts
|
|
become: true
|
|
serial: 1
|
|
roles:
|
|
- cgroups
|
|
|
|
- name: K3s Cluster Setup
|
|
hosts: k3s_hosts
|
|
become: true
|
|
roles:
|
|
- k3s
|