2026-06-06 18:48:35 +02:00
|
|
|
---
|
|
|
|
|
- name: Converge
|
|
|
|
|
hosts: all
|
2026-06-06 18:57:44 +02:00
|
|
|
become: true
|
2026-06-06 18:48:35 +02:00
|
|
|
gather_facts: true
|
2026-06-06 18:57:44 +02:00
|
|
|
vars:
|
|
|
|
|
base__firewall_apply: false
|
2026-06-09 17:40:01 +02:00
|
|
|
base__firewall_control_addr: 10.10.0.99 # test control-node LAN address
|
2026-06-19 09:37:06 +02:00
|
|
|
base__firewall_admin_addrs:
|
|
|
|
|
- "10.30.0.77" # fixture: an operator-workstation LAN source (admin-addr SSH allow)
|
2026-06-17 16:11:02 +02:00
|
|
|
# Exercise the mesh concern's include path with the live actions gated off, so it
|
|
|
|
|
# runs hermetically (no coordinator/key needed) and must be a clean no-op.
|
|
|
|
|
base__mesh_enabled: true
|
|
|
|
|
base__mesh_manage: false
|
|
|
|
|
base__mesh_setup_key: "dummy-molecule-key"
|
2026-06-20 11:22:40 +02:00
|
|
|
base__mesh_coordinator_pin: "203.0.113.9" # fixture IP (TEST-NET-3); pins FQDN from base__mesh_management_url
|
2026-06-17 20:39:23 +02:00
|
|
|
base__ssh_listen_mesh_only: true
|
|
|
|
|
base__ssh_listen_addr: "100.99.0.1" # fixture mesh IP (no wt0 in the container)
|
2026-06-06 18:57:44 +02:00
|
|
|
firewall_zones:
|
|
|
|
|
lan: 10.30.0.0/24
|
|
|
|
|
srv: 10.20.0.0/24
|
|
|
|
|
mgmt: 10.10.0.0/24
|
2026-06-17 20:46:03 +02:00
|
|
|
public: 0.0.0.0/0
|
2026-06-06 18:57:44 +02:00
|
|
|
firewall_catalog:
|
|
|
|
|
reverse_proxy:
|
|
|
|
|
host: instance
|
|
|
|
|
ingress:
|
|
|
|
|
- { from: lan, port: 443, proto: tcp }
|
|
|
|
|
photoprism:
|
|
|
|
|
host: instance
|
|
|
|
|
ingress:
|
2026-06-06 19:02:50 +02:00
|
|
|
- { from: srv, port: 2342, proto: tcp }
|
2026-06-17 20:46:03 +02:00
|
|
|
netbird_stun:
|
|
|
|
|
host: instance
|
|
|
|
|
ingress:
|
|
|
|
|
- { from: public, port: 3478, proto: udp }
|
2026-06-06 18:48:35 +02:00
|
|
|
roles:
|
|
|
|
|
- role: base
|