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.
 
 

35 lines
1.1 KiB

{{- if or (and (kindIs "invalid" .Values.jvb.service.enabled) (not .Values.jvb.useHostPort)) .Values.jvb.service.enabled }}
apiVersion: v1
kind: Service
metadata:
name: {{ include "jitsi-meet.jvb.fullname" . }}
annotations:
{{- range $key, $value := .Values.jvb.service.annotations }}
{{ $key }}: {{ $value | quote }}
{{- end }}
labels:
{{- include "jitsi-meet.jvb.labels" . | nindent 4 }}
spec:
type: {{ .Values.jvb.service.type }}
{{- with .Values.jvb.service.LoadbalancerIP }}
loadBalancerIP: {{ . }}
{{- end }}
ports:
- port: {{ default 10000 .Values.jvb.UDPPort }}
{{- if or (eq .Values.jvb.service.type "NodePort") (eq .Values.jvb.service.type "LoadBalancer") }}
nodePort: {{ .Values.jvb.UDPPort }}
{{- end }}
protocol: UDP
name: rtp-udp
{{- if .Values.jvb.websockets.enabled }}
- port: 9090
protocol: TCP
name: colibri-ws-tcp
{{- end }}
{{- with .Values.jvb.service.externalIPs }}
externalIPs:
{{ toYaml . | indent 2 | trim }}
{{- end }}
selector:
{{- include "jitsi-meet.jvb.selectorLabels" . | nindent 4 }}
{{- end }}