Service review: no breaking changes for MQTT+ntfy config. Notable additions: high-res snapshots, MQTT fixes, env var parsing fixes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
37 lines
828 B
YAML
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
|