You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
466 B
21 lines
466 B
{{- if .Values.jibri.enabled }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "jitsi-meet.jibri.fullname" . }}
|
|
labels:
|
|
{{- include "jitsi-meet.jibri.labels" . | nindent 4 }}
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- name: http-internal
|
|
port: 3333
|
|
targetPort: 3333
|
|
protocol: TCP
|
|
- name: http-api
|
|
port: 2222
|
|
targetPort: 2222
|
|
protocol: TCP
|
|
selector:
|
|
{{- include "jitsi-meet.jibri.selectorLabels" . | nindent 4 }}
|
|
{{- end }}
|
|
|