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.
28 lines
712 B
28 lines
712 B
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "jitsi-meet.name-prosody" . }}
|
|
labels:
|
|
{{ include "jitsi-meet.labels" . | indent 4 }}
|
|
spec:
|
|
type: {{ .Values.prosody.service.type }}
|
|
ports:
|
|
- port: {{ .Values.prosody.service.portC2S1 }}
|
|
targetPort: c2s1
|
|
protocol: TCP
|
|
name: c2s1
|
|
- port: {{ .Values.prosody.service.portC2S2 }}
|
|
targetPort: c2s2
|
|
protocol: TCP
|
|
name: c2s2
|
|
- port: 5280
|
|
targetPort: web
|
|
protocol: TCP
|
|
name: web
|
|
- port: 5347
|
|
targetPort: xmpp
|
|
protocol: TCP
|
|
name: xmpp
|
|
selector:
|
|
app.kubernetes.io/name: {{ include "jitsi-meet.name-prosody" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
|