feature/sso-hardening #9

Merged
bstein merged 685 commits from feature/sso-hardening into main 2026-01-13 20:23:26 +00:00
2 changed files with 10 additions and 3 deletions
Showing only changes of commit db01ab02ef - Show all commits

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