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: |
port: 7880
rtc:
udp_port: "7882-7882"
udp_port: "7882-7883"
tcp_port: 7881
use_external_ip: true
turn_servers:

View File

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