blumeops/argocd/manifests/frigate/deployment-notify.yaml
Erich Blume 9982d091bb Upgrade frigate-notify from v0.3.5 to v0.5.4
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>
2026-02-22 08:42:14 -08:00

37 lines
828 B
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: frigate-notify
namespace: frigate
spec:
replicas: 1
selector:
matchLabels:
app: frigate-notify
template:
metadata:
labels:
app: frigate-notify
spec:
containers:
- name: frigate-notify
image: ghcr.io/0x2142/frigate-notify:v0.5.4
env:
- name: TZ
value: America/Los_Angeles
volumeMounts:
- name: config
mountPath: /app/config.yml
subPath: config.yml
resources:
requests:
memory: "32Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "100m"
volumes:
- name: config
configMap:
name: frigate-notify-config