Skip to content

Commit 2554d2c

Browse files
authored
Merge pull request #70 from LiquidPL/webrtc-ports
Expose port used by WebRTC
2 parents 1ddc8ae + 8a0ea95 commit 2554d2c

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

charts/frigate/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: "0.14.1"
33
description: NVR With Realtime Object Detection for IP Cameras
44
name: frigate
5-
version: 7.7.0
5+
version: 7.7.1
66
keywords:
77
- tensorflow
88
- coral

charts/frigate/templates/deployment.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@ spec:
7575
- name: rtsp
7676
containerPort: 8554
7777
protocol: TCP
78+
- name: webrtc-udp
79+
containerPort: 8555
80+
protocol: UDP
81+
- name: webrtc-tcp
82+
containerPort: 8555
83+
protocol: TCP
7884
{{- if .Values.probes.liveness.enabled }}
7985
livenessProbe:
8086
httpGet:

charts/frigate/templates/service.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,14 @@ spec:
6767
protocol: TCP
6868
targetPort: rtsp
6969
{{/* TODO: think of making the nodePort ability available, the rtmp solution from above would not work as you can't use the same port multiple times */}}
70+
- name: webrtc-tcp
71+
port: 8555
72+
protocol: TCP
73+
targetPort: webrtc-tcp
74+
- name: webrtc-udp
75+
port: 8555
76+
protocol: UDP
77+
targetPort: webrtc-udp
7078
selector:
7179
app.kubernetes.io/name: {{ include "frigate.name" . }}
7280
app.kubernetes.io/instance: {{ .Release.Name }}

0 commit comments

Comments
 (0)