Service review: no breaking changes for MQTT+ntfy config. Notable additions: high-res snapshots, MQTT fixes, env var parsing fixes. Also enable webapi so frigate-notify can fetch snapshots — all events were being dropped with "No snapshot or clip available". Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
42 lines
925 B
YAML
42 lines
925 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: frigate-notify-config
|
|
namespace: frigate
|
|
data:
|
|
config.yml: |
|
|
frigate:
|
|
server: http://frigate:5000
|
|
public_url: https://nvr.ops.eblu.me
|
|
|
|
webapi:
|
|
enabled: true
|
|
|
|
mqtt:
|
|
enabled: true
|
|
server: mosquitto.mqtt.svc.cluster.local
|
|
port: 1883
|
|
clientid: frigate-notify
|
|
topic_prefix: frigate
|
|
|
|
alerts:
|
|
general:
|
|
title: "Frigate Alert"
|
|
|
|
zones:
|
|
unzoned: drop
|
|
allow:
|
|
- driveway_entrance
|
|
- driveway
|
|
|
|
labels:
|
|
allow:
|
|
- person
|
|
- car
|
|
|
|
ntfy:
|
|
enabled: true
|
|
server: http://ntfy.ntfy.svc.cluster.local:80
|
|
topic: frigate-alerts
|
|
headers:
|
|
- X-Actions: "view, Open Event, {{.Extra.PublicURL}}/review?id={{.ID}}, clear=true; view, Open Camera, {{.Extra.PublicURL}}/#/cameras/{{.Camera}}"
|