commit 953ebd8c40b8eb5dd48cc935a3ca61e577e35345 parent 69e37131462a2a8c7f26b1550b49e982810f988a Author: MTRNord <mtrnord1@gmail.com> Date: Wed, 6 Mar 2024 14:35:26 +0100 Fix livekit url Diffstat:
| M | charts/element-call/templates/deployment_livekit_mgmt_service.yaml | | | 2 | +- |
| M | charts/element-call/values.yaml | | | 1 | + |
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/charts/element-call/templates/deployment_livekit_mgmt_service.yaml b/charts/element-call/templates/deployment_livekit_mgmt_service.yaml @@ -37,7 +37,7 @@ spec: imagePullPolicy: {{ .Values.livekit_mgmt.image.pullPolicy }} env: - name: LIVEKIT_URL - value: ws://{{ include "element_call.fullname" . }}-livekit-server:{{ index .Values "livekit-server" "livekit" "port" }} + value: {{ .Values.livekit_ws }} - name: LIVEKIT_KEY value: {{ .Values.livekit_key }} - name: LIVEKIT_SECRET diff --git a/charts/element-call/values.yaml b/charts/element-call/values.yaml @@ -8,6 +8,7 @@ imagePullSecrets: [] ## THESE ALSO MUST BE DEFINED AT `.livekit-server.livekit.keys`! livekit_key: devkey livekit_secret: secret +livekit_ws: wss://localhost:7880 element_call: replicaCount: 1