van-thermal fires its first sample seconds after start, and the Pi often boots hot — order after network-online.target and retry network failures in the Pushover send path (3 attempts, 15s apart) so that page survives DNS not being up yet. Non-200 responses still don't retry. The Quadlet gets StopTimeout=120: podman's default 10s window SIGKILLed HA mid-flush and the recorder complained about an unclean sqlite shutdown on every start. Verified clean after a full stop/start cycle. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
38 lines
1.5 KiB
INI
38 lines
1.5 KiB
INI
# Home Assistant Container as a Podman Quadlet (replaced the ha_van HAOS VM
|
|
# 2026-07-07 — the fixed 2 GiB VM allocation starved the 4 GB Pi; VM domain XML
|
|
# is in git history under ha/ha_van.xml). Installed by deploy.sh to
|
|
# /etc/containers/systemd/; systemd generates homeassistant.service from it.
|
|
#
|
|
# Host networking: HA binds :8123 on the host directly, so the LAN URL is
|
|
# http://10.42.0.1:8123 (name: homeassistant) — no bridge port, no DNAT.
|
|
# /run/dbus gives HA the host BlueZ stack = the Pi's onboard Bluetooth (hci0).
|
|
[Unit]
|
|
Description=Home Assistant (Podman container)
|
|
Wants=network-online.target bluetooth.service
|
|
After=network-online.target bluetooth.service
|
|
|
|
[Container]
|
|
Image=ghcr.io/home-assistant/home-assistant:stable
|
|
ContainerName=homeassistant
|
|
Network=host
|
|
Volume=/srv/homeassistant:/config
|
|
Volume=/run/dbus:/run/dbus:ro
|
|
Environment=TZ=America/Toronto
|
|
# Bluetooth needs two escapes: Ubuntu's dbus-daemon mediates D-Bus per
|
|
# AppArmor label and the default containers profile can't send to BlueZ
|
|
# (AddMatch denied), and habluetooth wants NET_ADMIN+NET_RAW for adapter
|
|
# recovery. HA is rootful + host-net anyway.
|
|
PodmanArgs=--security-opt apparmor=unconfined
|
|
AddCapability=NET_ADMIN NET_RAW
|
|
# Podman's default 10s stop window SIGKILLs HA mid-flush and the recorder
|
|
# complains about an unclean sqlite shutdown on the next start.
|
|
StopTimeout=120
|
|
|
|
[Service]
|
|
Restart=always
|
|
# First start pulls the image (~600 MB) — allow for a slow uplink.
|
|
TimeoutStartSec=900
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|