Bare image references in manifests were ambiguous — unclear whether the tag was intentionally omitted or managed by kustomize. Add :kustomized sentinel to all 37 image refs overridden by kustomize images transformer. Add sync notes for tailscale-operator proxyclass (CRD fields not processed by kustomize). Mark devpi reviewed (6.19.1 is current). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
37 lines
832 B
YAML
37 lines
832 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:kustomized
|
|
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
|