From dec0457b0e96b2e6dab73e5156069ddc14a65ac4 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Sun, 22 Feb 2026 08:49:47 -0800 Subject: [PATCH] Fix frigate-notify config: webapi polling, dedup, hi-res snapshots - Switch from MQTT to webapi polling (v0.5.4 requires one, not both) - Set poll interval to 15s for responsive alerts - Enable notify_once to deduplicate per-event notifications - Set nosnap: drop to skip events without snapshots - Enable snap_hires for recording-stream quality snapshots - Remove unused MQTT broker config Co-Authored-By: Claude Opus 4.6 --- argocd/manifests/frigate/configmap-notify.yaml | 10 +++++----- docs/changelog.d/fix-frigate-notify-config.bugfix.md | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 docs/changelog.d/fix-frigate-notify-config.bugfix.md diff --git a/argocd/manifests/frigate/configmap-notify.yaml b/argocd/manifests/frigate/configmap-notify.yaml index e4b3f6e..b638849 100644 --- a/argocd/manifests/frigate/configmap-notify.yaml +++ b/argocd/manifests/frigate/configmap-notify.yaml @@ -11,17 +11,17 @@ data: webapi: enabled: true + interval: 15 mqtt: - enabled: true - server: mosquitto.mqtt.svc.cluster.local - port: 1883 - clientid: frigate-notify - topic_prefix: frigate + enabled: false alerts: general: title: "Frigate Alert" + nosnap: drop + snap_hires: true + notify_once: true zones: unzoned: drop diff --git a/docs/changelog.d/fix-frigate-notify-config.bugfix.md b/docs/changelog.d/fix-frigate-notify-config.bugfix.md new file mode 100644 index 0000000..24d3c31 --- /dev/null +++ b/docs/changelog.d/fix-frigate-notify-config.bugfix.md @@ -0,0 +1 @@ +Fix frigate-notify notification pipeline: switch to webapi polling, enable dedup, drop events without snapshots, use hi-res snapshots