mirror of
https://github.com/shadoll/helm-charts.git
synced 2026-08-28 11:33:17 +00:00
feat: Add Frigate NVR Helm chart with deployment, service, ingress, and configuration files
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ .Release.Name }}
|
||||
labels:
|
||||
{{- include "frigate.labels" . | nindent 4 }}
|
||||
spec:
|
||||
type: {{ .Values.service.type }}
|
||||
selector:
|
||||
{{- include "frigate.selectorLabels" . | nindent 4 }}
|
||||
ports:
|
||||
- name: http
|
||||
port: {{ .Values.service.httpPort }}
|
||||
targetPort: http
|
||||
protocol: TCP
|
||||
- name: rtsp
|
||||
port: {{ .Values.service.rtspPort }}
|
||||
targetPort: rtsp
|
||||
protocol: TCP
|
||||
- name: webrtc-tcp
|
||||
port: {{ .Values.service.webrtcPort }}
|
||||
targetPort: webrtc
|
||||
protocol: TCP
|
||||
- name: webrtc-udp
|
||||
port: {{ .Values.service.webrtcPort }}
|
||||
targetPort: webrtc-udp
|
||||
protocol: UDP
|
||||
Reference in New Issue
Block a user