From 320893469243778be0d4a20911c7158955ec78cf Mon Sep 17 00:00:00 2001 From: Seth Call Date: Sat, 3 Jan 2026 07:23:04 -0600 Subject: [PATCH] bump to 146 --- k8s/webrtc-be/templates/deployment.yml | 2 ++ k8s/webrtc-be/values-production.yaml | 2 ++ k8s/webrtc-be/values-staging.yaml | 5 +++-- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/k8s/webrtc-be/templates/deployment.yml b/k8s/webrtc-be/templates/deployment.yml index 5076c42..9af052a 100644 --- a/k8s/webrtc-be/templates/deployment.yml +++ b/k8s/webrtc-be/templates/deployment.yml @@ -50,6 +50,8 @@ spec: value: {{ .Values.mediasoup.listenIp | default "0.0.0.0" | quote }} - name: MEDIASOUP_ANNOUNCED_IP value: {{ .Values.mediasoup.announcedIp | default "" | quote }} + - name: MEDIASOUP_USE_NETWORK_INTERFACE_IP + value: {{ .Values.mediasoup.useNetworkInterfaceIP | default "false" | quote }} ports: - name: websocket-port containerPort: 5001 diff --git a/k8s/webrtc-be/values-production.yaml b/k8s/webrtc-be/values-production.yaml index e705456..80d1f61 100644 --- a/k8s/webrtc-be/values-production.yaml +++ b/k8s/webrtc-be/values-production.yaml @@ -9,4 +9,6 @@ auth: true webrtc_tag: 1.0.139 unused_tag: 1.0.0 enableDieEndpoint: false +mediasoup: + useNetworkInterfaceIP: true diff --git a/k8s/webrtc-be/values-staging.yaml b/k8s/webrtc-be/values-staging.yaml index 3d4c2aa..f380afb 100644 --- a/k8s/webrtc-be/values-staging.yaml +++ b/k8s/webrtc-be/values-staging.yaml @@ -5,9 +5,10 @@ grafana: # Webrtc env variables backendUrl: "https://staging.jamkazam.com" # Webrtc_be image version -webrtc_tag: 1.0.145 +webrtc_tag: 1.0.146 unused_tag: 1.0.0 enableDieEndpoint: true mediasoup: listenIp: "0.0.0.0" - announcedIp: "webrtc-be.staging.video.jamkazam.com" + announcedIp: "" + useNetworkInterfaceIP: true