chore(websocket): fix full redis url

This commit is contained in:
jyje 2025-01-12 02:49:06 +09:00
parent 1e17c5651d
commit b894afc239
No known key found for this signature in database
GPG Key ID: CFEECE847750DA12
2 changed files with 3 additions and 3 deletions

View File

@ -80,7 +80,7 @@ helm upgrade --install open-webui open-webui/open-webui
| readinessProbe | object | `{}` | Probe for readiness of the Open WebUI container ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes> | | readinessProbe | object | `{}` | Probe for readiness of the Open WebUI container ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes> |
| redis-cluster.enabled | bool | `false` | Enable Redis installation | | redis-cluster.enabled | bool | `false` | Enable Redis installation |
| redis-cluster.fullnameOverride | string | `"open-webui-redis"` | Redis cluster name (recommended to be 'open-webui-redis') | | redis-cluster.fullnameOverride | string | `"open-webui-redis"` | Redis cluster name (recommended to be 'open-webui-redis') |
| redis-cluster.auth.enabled | bool | `false` | Enable Redis authentication | | redis-cluster.auth.enabled | bool | `false` | Enable Redis authentication. For your security, we strongly suggest that you switch to 'true' |
| redis-cluster.replica.replicaCount | int | `3` | Number of Redis replica instances | | redis-cluster.replica.replicaCount | int | `3` | Number of Redis replica instances |
| replicaCount | int | `1` | | | replicaCount | int | `1` | |
| resources | object | `{}` | | | resources | object | `{}` | |

View File

@ -80,11 +80,11 @@ redis-cluster:
# -- Enable Redis installation # -- Enable Redis installation
enabled: false enabled: false
# -- Redis cluster name (recommended to be 'open-webui-redis') # -- Redis cluster name (recommended to be 'open-webui-redis')
# - In this case, redis url will be 'redis://open-webui-redis-headless:6379/0' or 'redis://[:<password>@]open-webui-redis-headless:6379/0' # - In this case, redis url will be 'redis://open-webui-redis-master:6379/0' or 'redis://[:<password>@]open-webui-redis-master:6379/0'
fullnameOverride: open-webui-redis fullnameOverride: open-webui-redis
# -- Redis Authentication # -- Redis Authentication
auth: auth:
# -- Enable Redis authentication (disabled by default) # -- Enable Redis authentication (disabled by default). For your security, we strongly suggest that you switch to 'auth.enabled=true'
enabled: false enabled: false
# -- Replica configuration for the Redis cluster # -- Replica configuration for the Redis cluster
replica: replica: