diff --git a/charts/open-webui/Chart.lock b/charts/open-webui/Chart.lock index 07f2522..dd9defd 100644 --- a/charts/open-webui/Chart.lock +++ b/charts/open-webui/Chart.lock @@ -1,7 +1,7 @@ dependencies: - name: ollama repository: https://otwld.github.io/ollama-helm/ - version: 1.1.2 + version: 1.3.0 - name: pipelines repository: https://helm.openwebui.com version: 0.0.6 @@ -10,6 +10,6 @@ dependencies: version: 2.9.0 - name: redis repository: https://charts.bitnami.com/bitnami - version: 20.6.2 -digest: sha256:b86b1f385a7f5ecd31f1d938aaa84384bdfc96cb1a173ca510c53aaeea845e3e -generated: "2024-12-27T09:05:35.551706-07:00" + version: 20.6.3 +digest: sha256:b0e3a4613e4f5b9ad2766cafb111b2c03dff1ba1774217ed21fb9fd5556729f4 +generated: "2025-01-16T14:22:56.662663-07:00" diff --git a/charts/open-webui/README.md b/charts/open-webui/README.md index a7ce898..ef4a5b4 100644 --- a/charts/open-webui/README.md +++ b/charts/open-webui/README.md @@ -1,6 +1,6 @@ # open-webui -![Version: 5.1.1](https://img.shields.io/badge/Version-5.1.1-informational?style=flat-square) ![AppVersion: 0.5.4](https://img.shields.io/badge/AppVersion-0.5.4-informational?style=flat-square) +![Version: 5.4.0](https://img.shields.io/badge/Version-5.4.0-informational?style=flat-square) ![AppVersion: 0.5.4](https://img.shields.io/badge/AppVersion-0.5.4-informational?style=flat-square) Open WebUI: A User-Friendly Web Interface for Chat Interactions 👋 @@ -33,6 +33,7 @@ helm upgrade --install open-webui open-webui/open-webui | Repository | Name | Version | |------------|------|---------| | https://apache.jfrog.io/artifactory/tika | tika | >=2.9.0 | +| https://charts.bitnami.com/bitnami | redis-cluster(redis) | >=20.6.2 | | https://helm.openwebui.com | pipelines | >=0.0.1 | | https://otwld.github.io/ollama-helm/ | ollama | >=0.24.0 | @@ -79,9 +80,12 @@ helm upgrade --install open-webui open-webui/open-webui | podLabels | object | `{}` | | | podSecurityContext | object | `{}` | Configure pod security context ref: | | readinessProbe | object | `{}` | Probe for readiness of the Open WebUI container ref: | +| redis-cluster | object | `{"auth":{"enabled":false},"enabled":false,"fullnameOverride":"open-webui-redis","replica":{"replicaCount":3}}` | Deploys a Redis cluster with subchart 'redis' from bitnami | +| redis-cluster.auth | object | `{"enabled":false}` | Redis Authentication | +| redis-cluster.auth.enabled | bool | `false` | Enable Redis authentication (disabled by default). For your security, we strongly suggest that you switch to 'auth.enabled=true' | | 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.auth.enabled | bool | `false` | Enable Redis authentication. For your security, we strongly suggest that you switch to 'true' | +| redis-cluster.fullnameOverride | string | `"open-webui-redis"` | Redis cluster name (recommended to be 'open-webui-redis') - In this case, redis url will be 'redis://open-webui-redis-master:6379/0' or 'redis://[:@]open-webui-redis-master:6379/0' | +| redis-cluster.replica | object | `{"replicaCount":3}` | Replica configuration for the Redis cluster | | redis-cluster.replica.replicaCount | int | `3` | Number of Redis replica instances | | replicaCount | int | `1` | | | resources | object | `{}` | | @@ -99,23 +103,24 @@ helm upgrade --install open-webui open-webui/open-webui | volumes | list | `[]` | Configure pod volumes ref: | | websocket.enabled | bool | `false` | Enables websocket support in Open WebUI with env `ENABLE_WEBSOCKET_SUPPORT` | | websocket.manager | string | `"redis"` | Specifies the websocket manager to use with env `WEBSOCKET_MANAGER`: redis (default) | -| websocket.url | string | `"redis://open-webui-redis:6379/0"` | Specifies the URL of the Redis instance for websocket communication. Template with `redis://:/` | -| websocket.redis.enabled | bool | `true` | Enables redis installation | -| websocket.redis.name | string | `"open-webui-redis"` | Redis name | -| websocket.redis.labels | object | `{}` | Redis labels | +| websocket.redis | object | `{"annotations":{},"args":[],"command":[],"enabled":true,"image":{"pullPolicy":"IfNotPresent","repository":"redis","tag":"7.4.2-alpine3.21"},"labels":{},"name":"open-webui-redis","resources":{},"service":{"annotations":{},"containerPort":6379,"labels":{},"nodePort":"","port":6379,"type":"ClusterIP"}}` | Deploys a redis | | websocket.redis.annotations | object | `{}` | Redis annotations | -| websocket.redis.image.repository | string | `"redis"` | URL of the Redis image. Shorten name `redis` stands for `docker.io/library/redis` | -| websocket.redis.image.tag | string | `"7.4.2-alpine3.21"` | Tag of the the Redis image | -| websocket.redis.image.pullPolicy | string | `"IfNotPresent"` | Pull policy of the the Redis image | -| websocket.redis.command | list | `[]` | Override commands of the the Redis container | -| websocket.redis.args | list | `[]` | Override arguments of the the Redis container | -| websocket.redis.resources | object | `{}` | Resources of the the Redis container | -| websocket.service.containerPort | int | `6379` | Redis service port | -| websocket.service.type | string | `"ClusterIP"` | Redis service type | -| websocket.service.labels | object | `{}` | Redis service labels | -| websocket.service.annotations | object | `{}` | Redis service annotations | -| websocket.service.port | int | `6379` | Redis service port | -| websocket.service.nodePort | string | `""` | Redis service node port. Valid only when type is `NodePort` | +| websocket.redis.args | list | `[]` | Redis arguments (overrides default) | +| websocket.redis.command | list | `[]` | Redis command (overrides default) | +| websocket.redis.enabled | bool | `true` | Enable redis installation | +| websocket.redis.image | object | `{"pullPolicy":"IfNotPresent","repository":"redis","tag":"7.4.2-alpine3.21"}` | Redis image | +| websocket.redis.labels | object | `{}` | Redis labels | +| websocket.redis.name | string | `"open-webui-redis"` | Redis name | +| websocket.redis.resources | object | `{}` | Redis resources | +| websocket.redis.service | object | `{"annotations":{},"containerPort":6379,"labels":{},"nodePort":"","port":6379,"type":"ClusterIP"}` | Redis service | +| websocket.redis.service.annotations | object | `{}` | Redis service annotations | +| websocket.redis.service.containerPort | int | `6379` | Redis container/target port | +| websocket.redis.service.labels | object | `{}` | Redis service labels | +| websocket.redis.service.nodePort | string | `""` | Redis service node port. Valid only when type is `NodePort` | +| websocket.redis.service.port | int | `6379` | Redis service port | +| websocket.redis.service.type | string | `"ClusterIP"` | Redis service type | +| websocket.url | string | `"redis://open-webui-redis:6379/0"` | Specifies the URL of the Redis instance for websocket communication. Template with `redis://[:@]:/` | + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs](https://github.com/norwoodj/helm-docs/). diff --git a/charts/open-webui/charts/ollama-1.1.2.tgz b/charts/open-webui/charts/ollama-1.3.0.tgz similarity index 89% rename from charts/open-webui/charts/ollama-1.1.2.tgz rename to charts/open-webui/charts/ollama-1.3.0.tgz index 5f7dec3..9c6662a 100644 Binary files a/charts/open-webui/charts/ollama-1.1.2.tgz and b/charts/open-webui/charts/ollama-1.3.0.tgz differ diff --git a/charts/open-webui/charts/redis-20.6.2.tgz b/charts/open-webui/charts/redis-20.6.2.tgz deleted file mode 100644 index 383bfb0..0000000 Binary files a/charts/open-webui/charts/redis-20.6.2.tgz and /dev/null differ diff --git a/charts/open-webui/charts/redis-20.6.3.tgz b/charts/open-webui/charts/redis-20.6.3.tgz new file mode 100644 index 0000000..c459982 Binary files /dev/null and b/charts/open-webui/charts/redis-20.6.3.tgz differ