2026-05-12 20:19:05 +02:00
services :
operator-ui :
build : .
container_name : control-plane-ui
user : "1000:1000"
command : python src/operator_ui.py
ports :
2026-07-22 17:29:11 +02:00
# Loopback: node-agent on the VPS runs with network_mode: host and probes
# localhost:18180/summary directly (_check_control_plane_health in
# node_agent.py). Tailscale IP: runtime-materializer@PIHA and other mesh
# consumers reach this as http://100.95.58.48:18180. No 0.0.0.0 — this
# host previously had NO 0.0.0.0 exemption and /action/mutate has no auth,
# so a public bind lets anyone on the internet approve remediation
# actions. Same dual-bind pattern as services/ollama/docker-compose.yml.
# Requires .env (from env.example) next to this file at deploy — see
# services/fleet-prometheus/README.md for the "missing .env silently
# binds 0.0.0.0" gotcha that also applies here.
- "127.0.0.1:18180:8080"
- "${TAILSCALE_BIND_IP}:18180:8080"
2026-05-12 20:19:05 +02:00
volumes :
- /opt/homelab:/opt/homelab
restart : unless-stopped
healthcheck :
2026-05-18 21:34:57 +02:00
test : [ "CMD" , "python" , "-c" , "import urllib.request; urllib.request.urlopen('http://127.0.0.1:8080/', timeout=3).read()" ]
2026-05-12 20:19:05 +02:00
interval : 30s
timeout : 10s
retries : 3
observer :
build : .
container_name : control-plane-observer
user : "1000:1000"
command : python /repo/scripts/observer/observer.py
volumes :
- /opt/homelab:/opt/homelab
- ../..:/repo:ro
restart : unless-stopped
environment :
- REPO_ROOT=/repo
- RUNTIME_PATH=/opt/homelab
2026-05-12 20:59:46 +02:00
healthcheck :
test : [ "CMD" , "test" , "-f" , "/opt/homelab/state/observer.heartbeat" ]
interval : 30s
timeout : 5s
retries : 3
start_period : 5s
2026-05-12 20:19:05 +02:00
supervisor :
build : .
container_name : control-plane-supervisor
user : "1000:1000"
command : python src/supervisor.py
volumes :
- /opt/homelab:/opt/homelab
- ../..:/repo:ro
restart : unless-stopped
environment :
- REPO_ROOT=/repo
- RUNTIME_PATH=/opt/homelab
2026-05-12 20:59:46 +02:00
healthcheck :
2026-07-16 16:17:20 +02:00
# Freshness, not just existence: `test -f` stays true forever once the
# heartbeat file is created once, even if the reconcile loop has been
# silently frozen for hours (see 2026-07-15 incident — container reported
# "healthy" for 24h with a dead loop). Fail if the heartbeat hasn't been
# touched in the last 180s (loop interval 30s + RECONCILE_TIMEOUT 90s +
# buffer for a legitimately slow cycle).
test : [ "CMD" , "python" , "-c" , "import os,sys,time; p='/opt/homelab/state/supervisor.heartbeat'; sys.exit(0 if os.path.exists(p) and time.time()-os.path.getmtime(p)<180 else 1)" ]
2026-05-12 20:59:46 +02:00
interval : 60s
timeout : 5s
retries : 3
start_period : 10s
2026-05-12 20:19:05 +02:00
executor :
build : .
container_name : control-plane-executor
2026-06-03 18:19:58 +02:00
user : "1000:1000"
group_add :
- "999"
2026-05-12 20:19:05 +02:00
command : python src/executor.py
volumes :
- /opt/homelab:/opt/homelab
- ../..:/repo
- /var/run/docker.sock:/var/run/docker.sock
restart : unless-stopped
environment :
- REPO_ROOT=/repo
- RUNTIME_PATH=/opt/homelab
2026-05-12 20:59:46 +02:00
healthcheck :
test : [ "CMD" , "test" , "-f" , "/opt/homelab/state/executor.heartbeat" ]
interval : 30s
timeout : 5s
retries : 3
start_period : 5s