communication: move LiveKit media to 7882/7881

This commit is contained in:
Brad Stein 2025-12-31 16:27:09 -03:00
parent 01dcb76966
commit 650d210876
2 changed files with 14 additions and 7 deletions

View File

@ -7,8 +7,8 @@ data:
livekit.yaml: | livekit.yaml: |
port: 7880 port: 7880
rtc: rtc:
udp_port: 443 udp_port: 7882
tcp_port: 0 tcp_port: 7881
use_external_ip: true use_external_ip: true
turn_servers: turn_servers:
- host: turn.live.bstein.dev - host: turn.live.bstein.dev

View File

@ -65,8 +65,11 @@ spec:
- containerPort: 7880 - containerPort: 7880
name: http name: http
protocol: TCP protocol: TCP
- containerPort: 443 - containerPort: 7881
name: udp-media name: rtc-tcp
protocol: TCP
- containerPort: 7882
name: rtc-udp
protocol: UDP protocol: UDP
volumeMounts: volumeMounts:
- name: config - name: config
@ -107,7 +110,11 @@ spec:
port: 7880 port: 7880
targetPort: 7880 targetPort: 7880
protocol: TCP protocol: TCP
- name: udp-media - name: rtc-tcp
port: 443 port: 7881
targetPort: 443 targetPort: 7881
protocol: TCP
- name: rtc-udp
port: 7882
targetPort: 7882
protocol: UDP protocol: UDP