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-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-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
|
|
|
|
|
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-06 18:48:35 +02:00
|
|
|
roles:
|
|
|
|
|
- role: base
|