mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 12:03:59 +00:00
- install.py: Major update including configuration variable expansion, improved k3s/k3d handling, and enhanced installation logic. - etc/ scripts: Significant refactoring of initialization scripts (Kerberos, Port Forwards, Garage Store, etc.). - Port Forwards: Transitioned from XML to port-mappings.conf for managing kubectl port-forwards. - Status Reporting: Improved status checking for common services. - Infrastructure: Updated Ansible inventory and rsyslog role configurations. - Tests: Added a comprehensive suite of tests for 'etc' initialization scripts in prole/tests/etc/. - Documentation: Added prole-db-documentation-mcp-architecture.md. - General: Updated Dockerfiles and various helper scripts.
36 lines
845 B
YAML
36 lines
845 B
YAML
---
|
|
ansible_user: ansible
|
|
ansible_ssh_private_key_file: "~/.ssh/id_ed25519_ansible"
|
|
|
|
ansible_become: true
|
|
ansible_become_method: sudo
|
|
|
|
# DNS topology vars shared across roles
|
|
prole_domain: "prole.org"
|
|
ad_dc_ip: "10.0.0.3"
|
|
lan_reverse_zone: "0.0.10.in-addr.arpa"
|
|
|
|
# k3s default Pod/Service CIDR reverse zones
|
|
k3s_reverse_zones:
|
|
- "42.10.in-addr.arpa"
|
|
- "43.10.in-addr.arpa"
|
|
|
|
# Seed PTRs (adjust octets to match your actual IPs)
|
|
ptr_records:
|
|
- last_octet: "3"
|
|
fqdn: "myrddin.prole.org"
|
|
- last_octet: "4"
|
|
fqdn: "raspberry.prole.org"
|
|
- last_octet: "5"
|
|
fqdn: "pi.prole.org"
|
|
- last_octet: "207"
|
|
fqdn: "retropie.prole.org"
|
|
|
|
rsyslog_server: myrddin.prole.org
|
|
|
|
# Prole management
|
|
prole_home: "/opt/prole"
|
|
prole_repo_url: "https://github.com/prole-org/prole.git"
|
|
prole_version: "main"
|
|
prole_logs_dir: "/opt/prole/logs/chrisfu"
|