38 lines
912 B
YAML
38 lines
912 B
YAML
|
|
service:
|
||
|
|
name: ha-diag-agent
|
||
|
|
# Deployed per-host: piha (site: ken) and chelsty-infra (site: chelsty)
|
||
|
|
owner_node: per-host
|
||
|
|
exposure: local-only
|
||
|
|
monitor: true
|
||
|
|
|
||
|
|
dependencies:
|
||
|
|
- homeassistant
|
||
|
|
|
||
|
|
ports:
|
||
|
|
- 8087
|
||
|
|
|
||
|
|
healthcheck:
|
||
|
|
type: http
|
||
|
|
path: /health
|
||
|
|
interval: 30s
|
||
|
|
timeout: 10s
|
||
|
|
retries: 3
|
||
|
|
start_period: 20s
|
||
|
|
|
||
|
|
restart_policy: unless-stopped
|
||
|
|
|
||
|
|
persistence:
|
||
|
|
paths:
|
||
|
|
- /opt/homelab/events
|
||
|
|
- /var/lib/ha-diag-agent
|
||
|
|
|
||
|
|
runtime:
|
||
|
|
env_vars:
|
||
|
|
- HA_TOKEN # long-lived HA access token (required)
|
||
|
|
- HA_URL # http://homeassistant.local:8123
|
||
|
|
- NODE_NAME # canonical node name: piha, chelsty-infra, ...
|
||
|
|
- LOCATION_TAG # human site label: ken, chelsty, ...
|
||
|
|
- CHECK_INTERVAL # seconds between check cycles (default: 60)
|
||
|
|
- PORT # FastAPI port (default: 8087)
|
||
|
|
- LOG_LEVEL # default: info
|