2024-09-29 18:34:31 +00:00
|
|
|
---
|
|
|
|
# Source: frigate/templates/configmap.yaml
|
|
|
|
apiVersion: v1
|
|
|
|
kind: ConfigMap
|
|
|
|
metadata:
|
|
|
|
name: frigate
|
|
|
|
namespace: frigate
|
|
|
|
labels:
|
|
|
|
app.kubernetes.io/name: frigate
|
|
|
|
helm.sh/chart: frigate-7.6.0
|
|
|
|
app.kubernetes.io/instance: frigate
|
|
|
|
app.kubernetes.io/managed-by: Helm
|
|
|
|
data:
|
|
|
|
config.yml: |
|
|
|
|
mqtt:
|
|
|
|
host: frigate-mqtt
|
|
|
|
port: 1883
|
|
|
|
topic_prefix: frigate
|
|
|
|
client_id: frigate
|
|
|
|
user: '{FRIGATE_MQTT_USERNAME}'
|
|
|
|
password: '{FRIGATE_MQTT_PASSWORD}'
|
|
|
|
stats_interval: 60
|
|
|
|
|
|
|
|
detectors:
|
|
|
|
# coral:
|
|
|
|
# type: edgetpu
|
|
|
|
# device: usb
|
2024-09-29 20:06:41 +00:00
|
|
|
#cpu1:
|
|
|
|
#type: cpu
|
|
|
|
ov:
|
|
|
|
type: openvino
|
|
|
|
device: CPU
|
|
|
|
|
|
|
|
model:
|
|
|
|
width: 300
|
|
|
|
height: 300
|
|
|
|
input_tensor: nhwc
|
|
|
|
input_pixel_format: bgr
|
|
|
|
path: /openvino-model/ssdlite_mobilenet_v2.xml
|
|
|
|
labelmap_path: /openvino-model/coco_91cl_bkgr.txt
|
|
|
|
|
|
|
|
record:
|
|
|
|
enabled: True
|
|
|
|
retain:
|
|
|
|
days: 3
|
|
|
|
mode: motion
|
|
|
|
events:
|
|
|
|
retain:
|
|
|
|
default: 30
|
|
|
|
mode: motion
|
2024-09-29 18:34:31 +00:00
|
|
|
|
|
|
|
cameras:
|
|
|
|
server_room:
|
|
|
|
ffmpeg:
|
|
|
|
inputs:
|
2024-10-19 10:51:13 +00:00
|
|
|
- path: rtsp://go2rtc:8554/server_room
|
2024-09-29 18:34:31 +00:00
|
|
|
roles:
|
|
|
|
- detect
|
|
|
|
- rtmp
|
|
|
|
- record
|
|
|
|
chaos:
|
|
|
|
ffmpeg:
|
|
|
|
inputs:
|
2024-10-19 10:51:13 +00:00
|
|
|
- path: rtsp://go2rtc:8554/chaos
|
2024-09-29 18:34:31 +00:00
|
|
|
roles:
|
|
|
|
- detect
|
|
|
|
- rtmp
|
|
|
|
- record
|
|
|
|
cyber:
|
|
|
|
ffmpeg:
|
|
|
|
inputs:
|
2024-10-19 10:51:13 +00:00
|
|
|
- path: rtsp://go2rtc:8554/cyber
|
2024-09-29 18:34:31 +00:00
|
|
|
roles:
|
|
|
|
- detect
|
|
|
|
- rtmp
|
|
|
|
- record
|
|
|
|
workshop:
|
|
|
|
ffmpeg:
|
|
|
|
inputs:
|
2024-10-19 10:51:13 +00:00
|
|
|
- path: rtsp://go2rtc:8554/workshop
|
2024-09-29 18:34:31 +00:00
|
|
|
roles:
|
|
|
|
- detect
|
|
|
|
- rtmp
|
|
|
|
- record
|
|
|
|
---
|
|
|
|
# Source: frigate/templates/config-pvc.yaml
|
|
|
|
kind: PersistentVolumeClaim
|
|
|
|
apiVersion: v1
|
|
|
|
metadata:
|
|
|
|
name: frigate-config
|
|
|
|
labels:
|
|
|
|
app.kubernetes.io/name: frigate
|
|
|
|
helm.sh/chart: frigate-7.6.0
|
|
|
|
app.kubernetes.io/instance: frigate
|
|
|
|
app.kubernetes.io/managed-by: Helm
|
|
|
|
spec:
|
|
|
|
accessModes:
|
|
|
|
- "ReadWriteOnce"
|
|
|
|
resources:
|
|
|
|
requests:
|
|
|
|
storage: "100Mi"
|
|
|
|
storageClassName: "frigate-config"
|
|
|
|
---
|
|
|
|
# Source: frigate/templates/service.yaml
|
|
|
|
apiVersion: v1
|
|
|
|
kind: Service
|
|
|
|
metadata:
|
|
|
|
name: frigate
|
|
|
|
labels:
|
|
|
|
app.kubernetes.io/name: frigate
|
|
|
|
helm.sh/chart: frigate-7.6.0
|
|
|
|
app.kubernetes.io/instance: frigate
|
|
|
|
app.kubernetes.io/version: "0.14.0"
|
|
|
|
app.kubernetes.io/managed-by: Helm
|
|
|
|
spec:
|
|
|
|
type: ClusterIP
|
|
|
|
ipFamilyPolicy: SingleStack
|
|
|
|
ports:
|
|
|
|
- name: http
|
|
|
|
port: 5000
|
|
|
|
protocol: TCP
|
|
|
|
targetPort: http
|
|
|
|
|
|
|
|
- name: http-auth
|
|
|
|
port: 8971
|
|
|
|
protocol: TCP
|
|
|
|
targetPort: http-auth
|
|
|
|
- name: rtmp
|
|
|
|
port: 1935
|
|
|
|
protocol: TCP
|
|
|
|
targetPort: rtmp
|
|
|
|
|
|
|
|
- name: rtsp
|
|
|
|
port: 8554
|
|
|
|
protocol: TCP
|
|
|
|
targetPort: rtsp
|
|
|
|
|
|
|
|
selector:
|
|
|
|
app.kubernetes.io/name: frigate
|
|
|
|
app.kubernetes.io/instance: frigate
|
|
|
|
---
|
|
|
|
# Source: frigate/templates/deployment.yaml
|
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: frigate
|
|
|
|
labels:
|
|
|
|
app.kubernetes.io/name: frigate
|
|
|
|
helm.sh/chart: frigate-7.6.0
|
|
|
|
app.kubernetes.io/instance: frigate
|
|
|
|
app.kubernetes.io/version: "0.14.0"
|
|
|
|
app.kubernetes.io/managed-by: Helm
|
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
revisionHistoryLimit: 3
|
|
|
|
strategy:
|
|
|
|
type: Recreate
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app.kubernetes.io/name: frigate
|
|
|
|
app.kubernetes.io/instance: frigate
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app.kubernetes.io/name: frigate
|
|
|
|
app.kubernetes.io/instance: frigate
|
|
|
|
annotations:
|
2024-10-19 10:51:13 +00:00
|
|
|
checksum/configmap: 9de9e29d499af45a0e7392032d64d26d8e13e12211971a307f201c97ac91f173
|
2024-09-29 18:34:31 +00:00
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: frigate
|
|
|
|
image: "ghcr.io/blakeblackshear/frigate:0.14.0"
|
|
|
|
imagePullPolicy: IfNotPresent
|
|
|
|
securityContext:
|
|
|
|
{}
|
|
|
|
ports:
|
|
|
|
- name: http
|
|
|
|
containerPort: 5000
|
|
|
|
protocol: TCP
|
|
|
|
- name: http-auth
|
|
|
|
containerPort: 8971
|
|
|
|
protocol: TCP
|
|
|
|
- name: rtmp
|
|
|
|
containerPort: 1935
|
|
|
|
protocol: TCP
|
|
|
|
- name: rtsp
|
|
|
|
containerPort: 8554
|
|
|
|
protocol: TCP
|
|
|
|
livenessProbe:
|
|
|
|
httpGet:
|
|
|
|
path: /
|
|
|
|
port: http
|
|
|
|
scheme: HTTP
|
|
|
|
initialDelaySeconds: 30
|
|
|
|
failureThreshold: 5
|
|
|
|
timeoutSeconds: 10
|
|
|
|
readinessProbe:
|
|
|
|
httpGet:
|
|
|
|
path: /
|
|
|
|
port: http
|
|
|
|
scheme: HTTP
|
|
|
|
initialDelaySeconds: 30
|
|
|
|
failureThreshold: 5
|
|
|
|
timeoutSeconds: 10
|
|
|
|
env:
|
|
|
|
envFrom:
|
|
|
|
- secretRef:
|
|
|
|
name: frigate-rstp-credentials
|
|
|
|
- secretRef:
|
|
|
|
name: frigate-mqtt-credentials
|
|
|
|
volumeMounts:
|
|
|
|
- mountPath: /config/config.yml
|
|
|
|
subPath: config.yml
|
|
|
|
name: configmap
|
|
|
|
- mountPath: /config
|
|
|
|
name: config
|
|
|
|
- mountPath: /data
|
|
|
|
name: data
|
|
|
|
- mountPath: /media
|
|
|
|
name: media
|
|
|
|
- name: dshm
|
|
|
|
mountPath: /dev/shm
|
|
|
|
- name: tmp
|
|
|
|
mountPath: /tmp
|
|
|
|
resources:
|
|
|
|
{}
|
|
|
|
volumes:
|
|
|
|
- name: configmap
|
|
|
|
configMap:
|
|
|
|
name: frigate
|
|
|
|
- name: config
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: frigate-config
|
|
|
|
- name: data
|
|
|
|
emptyDir: {}
|
|
|
|
- name: media
|
|
|
|
persistentVolumeClaim:
|
2024-10-19 10:51:13 +00:00
|
|
|
claimName: frigate-storage
|
2024-09-29 18:34:31 +00:00
|
|
|
- name: dshm
|
|
|
|
emptyDir:
|
|
|
|
medium: Memory
|
|
|
|
sizeLimit: 4Gi
|
|
|
|
- name: tmp
|
|
|
|
emptyDir:
|
|
|
|
medium: Memory
|
|
|
|
sizeLimit: 4Gi
|
|
|
|
---
|
|
|
|
# Source: frigate/templates/ingress.yaml
|
|
|
|
apiVersion: networking.k8s.io/v1
|
|
|
|
kind: Ingress
|
|
|
|
metadata:
|
|
|
|
name: frigate
|
|
|
|
labels:
|
|
|
|
app.kubernetes.io/name: frigate
|
|
|
|
helm.sh/chart: frigate-7.6.0
|
|
|
|
app.kubernetes.io/instance: frigate
|
|
|
|
app.kubernetes.io/version: "0.14.0"
|
|
|
|
app.kubernetes.io/managed-by: Helm
|
|
|
|
annotations:
|
|
|
|
external-dns.alpha.kubernetes.io/target: traefik.k-space.ee
|
|
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
|
|
traefik.ingress.kubernetes.io/router.middlewares: frigate-frigate@kubernetescrd
|
|
|
|
traefik.ingress.kubernetes.io/router.tls: "true"
|
|
|
|
spec:
|
|
|
|
tls:
|
|
|
|
- hosts:
|
|
|
|
- "*.k-space.ee"
|
|
|
|
secretName:
|
|
|
|
rules:
|
|
|
|
- host: "frigate.k-space.ee"
|
|
|
|
http:
|
|
|
|
paths:
|
|
|
|
- path: /
|
|
|
|
pathType: "ImplementationSpecific"
|
|
|
|
backend:
|
|
|
|
service:
|
|
|
|
name: frigate
|
|
|
|
port:
|
|
|
|
name: http
|