fix redis url

This commit is contained in:
Philip Haupt
2025-11-15 23:59:42 +01:00
parent f66f1ceaff
commit a9d58f95be
2 changed files with 5 additions and 7 deletions

View File

@@ -191,8 +191,6 @@ spec:
value: "True" value: "True"
- name: WEBSOCKET_MANAGER - name: WEBSOCKET_MANAGER
value: redis value: redis
- name: WEBSOCKET_REDIS_URL
value: redis://valkey.valkey.svc.cluster.local:6379/5
- name: ENABLE_OAUTH_SIGNUP - name: ENABLE_OAUTH_SIGNUP
value: "True" value: "True"
- name: OAUTH_MERGE_ACCOUNTS_BY_EMAIL - name: OAUTH_MERGE_ACCOUNTS_BY_EMAIL
@@ -218,10 +216,10 @@ spec:
value: default-roles-home value: default-roles-home
- name: OAUTH_ADMIN_ROLES - name: OAUTH_ADMIN_ROLES
value: ADMIN value: ADMIN
- name: WEBSOCKET_REDIS_PASSWORD - name: WEBSOCKET_REDIS_URL
valueFrom: valueFrom:
secretKeyRef: secretKeyRef:
key: valkey_password key: redis_url
name: open-webui name: open-webui
image: ghcr.io/open-webui/open-webui:0.6.36 image: ghcr.io/open-webui/open-webui:0.6.36
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent

View File

@@ -57,7 +57,7 @@ websocket:
manager: redis manager: redis
# -- Specifies the URL of the Redis instance for websocket communication. Template with `redis://[:<password>@]<hostname>:<port>/<db>` # -- Specifies the URL of the Redis instance for websocket communication. Template with `redis://[:<password>@]<hostname>:<port>/<db>`
# @section -- Websocket configuration # @section -- Websocket configuration
url: redis://valkey.valkey.svc.cluster.local:6379/5 url: ""
# -- Node selector for websocket pods # -- Node selector for websocket pods
# @section -- Websocket configuration # @section -- Websocket configuration
nodeSelector: {} 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. # -- 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: extraEnvVars:
- name: WEBSOCKET_REDIS_PASSWORD - name: WEBSOCKET_REDIS_URL
valueFrom: valueFrom:
secretKeyRef: secretKeyRef:
name: open-webui name: open-webui
key: valkey_password key: redis_url
# - name: OPENAI_API_KEY # - name: OPENAI_API_KEY
# valueFrom: # valueFrom:
# secretKeyRef: # secretKeyRef: