From a9d58f95be0edc78e1342dbb9d8451ac47a1cd71 Mon Sep 17 00:00:00 2001 From: Philip Haupt <“der.mad.mob@gmail.com”> Date: Sat, 15 Nov 2025 23:59:42 +0100 Subject: [PATCH] fix redis url --- open-webui/main.yaml | 6 ++---- open-webui/src/values.yaml | 6 +++--- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/open-webui/main.yaml b/open-webui/main.yaml index 15a0841..b8355d4 100644 --- a/open-webui/main.yaml +++ b/open-webui/main.yaml @@ -191,8 +191,6 @@ spec: value: "True" - name: WEBSOCKET_MANAGER value: redis - - name: WEBSOCKET_REDIS_URL - value: redis://valkey.valkey.svc.cluster.local:6379/5 - name: ENABLE_OAUTH_SIGNUP value: "True" - name: OAUTH_MERGE_ACCOUNTS_BY_EMAIL @@ -218,10 +216,10 @@ spec: value: default-roles-home - name: OAUTH_ADMIN_ROLES value: ADMIN - - name: WEBSOCKET_REDIS_PASSWORD + - name: WEBSOCKET_REDIS_URL valueFrom: secretKeyRef: - key: valkey_password + key: redis_url name: open-webui image: ghcr.io/open-webui/open-webui:0.6.36 imagePullPolicy: IfNotPresent diff --git a/open-webui/src/values.yaml b/open-webui/src/values.yaml index 636d49a..12279b9 100644 --- a/open-webui/src/values.yaml +++ b/open-webui/src/values.yaml @@ -57,7 +57,7 @@ websocket: manager: redis # -- Specifies the URL of the Redis instance for websocket communication. Template with `redis://[:@]:/` # @section -- Websocket configuration - url: redis://valkey.valkey.svc.cluster.local:6379/5 + url: "" # -- Node selector for websocket pods # @section -- Websocket configuration nodeSelector: {} @@ -463,11 +463,11 @@ databaseUrl: "" # -- Env vars added to the Open WebUI deployment. Most up-to-date environment variables can be found here: https://docs.openwebui.com/getting-started/env-configuration. Variables can be defined as list or map style. extraEnvVars: - - name: WEBSOCKET_REDIS_PASSWORD + - name: WEBSOCKET_REDIS_URL valueFrom: secretKeyRef: name: open-webui - key: valkey_password + key: redis_url # - name: OPENAI_API_KEY # valueFrom: # secretKeyRef: