communication: fix LiveKit udp_port range and expose 7883

This commit is contained in:
Brad Stein 2025-12-31 18:48:18 -03:00
parent b7b1ffde6c
commit db01ab02ef
2 changed files with 10 additions and 3 deletions

View File

@ -7,7 +7,7 @@ data:
livekit.yaml: | livekit.yaml: |
port: 7880 port: 7880
rtc: rtc:
udp_port: "7882-7882" udp_port: "7882-7883"
tcp_port: 7881 tcp_port: 7881
use_external_ip: true use_external_ip: true
turn_servers: turn_servers:

View File

@ -13,7 +13,7 @@ spec:
template: template:
metadata: metadata:
annotations: annotations:
checksum/config: livekit-config-v2 checksum/config: livekit-config-v3
labels: labels:
app: livekit app: livekit
spec: spec:
@ -73,6 +73,9 @@ spec:
- containerPort: 7882 - containerPort: 7882
name: rtc-udp name: rtc-udp
protocol: UDP protocol: UDP
- containerPort: 7883
name: rtc-udp2
protocol: UDP
volumeMounts: volumeMounts:
- name: config - name: config
mountPath: /etc/livekit mountPath: /etc/livekit
@ -116,7 +119,11 @@ spec:
port: 7881 port: 7881
targetPort: 7881 targetPort: 7881
protocol: TCP protocol: TCP
- name: rtc-udp - name: rtc-udp-7882
port: 7882 port: 7882
targetPort: 7882 targetPort: 7882
protocol: UDP protocol: UDP
- name: rtc-udp-7883
port: 7883
targetPort: 7883
protocol: UDP