From b565ff8d8faa81b87af684973ad6ec348a4d0e72 Mon Sep 17 00:00:00 2001 From: "0xThresh.eth" <0xthresh@protonmail.com> Date: Sat, 18 Oct 2025 09:36:58 -0600 Subject: [PATCH] chore: merge main, fix docs, version updates --- charts/open-webui/Chart.yaml | 2 +- charts/open-webui/README.md | 5 +++-- charts/open-webui/values.yaml | 9 +++++---- charts/pipelines/Chart.yaml | 2 +- charts/pipelines/README.md | 6 ++++-- charts/pipelines/values.yaml | 1 + 6 files changed, 15 insertions(+), 10 deletions(-) diff --git a/charts/open-webui/Chart.yaml b/charts/open-webui/Chart.yaml index 858fcdf..e810809 100644 --- a/charts/open-webui/Chart.yaml +++ b/charts/open-webui/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: open-webui -version: 8.12.1 +version: 8.12.2 appVersion: 0.6.34 home: https://www.openwebui.com/ icon: >- diff --git a/charts/open-webui/README.md b/charts/open-webui/README.md index 8362a06..ae9a80b 100644 --- a/charts/open-webui/README.md +++ b/charts/open-webui/README.md @@ -1,6 +1,6 @@ # open-webui -![Version: 8.12.1](https://img.shields.io/badge/Version-8.12.1-informational?style=flat-square) ![AppVersion: 0.6.34](https://img.shields.io/badge/AppVersion-0.6.34-informational?style=flat-square) +![Version: 8.12.2](https://img.shields.io/badge/Version-8.12.2-informational?style=flat-square) ![AppVersion: 0.6.34](https://img.shields.io/badge/AppVersion-0.6.34-informational?style=flat-square) Open WebUI: A User-Friendly Web Interface for Chat Interactions 👋 @@ -177,8 +177,9 @@ helm upgrade --install open-webui open-webui/open-webui |-----|------|---------|-------------| | serviceAccount.annotations | object | `{}` | Additional annotations to add to the ServiceAccount | | serviceAccount.automountServiceAccountToken | bool | `false` | Automount service account token for the Open WebUI pods | +| serviceAccount.create | bool | `true` | If create is set to false, set `name` to existing service account name | | serviceAccount.enable | bool | `true` | Enable service account creation | -| serviceAccount.name | string | `""` | Service account name to use. If not set and `serviceAccount.create` is true, a name is generated using the fullname template | +| serviceAccount.name | string | `"existing-sa"` | Service account name to use. If `ServiceAccount.create` is false, this assumes an existing service account exists with the set name. If not set and `serviceAccount.create` is true, a name is generated using the fullname template. | ### SSO Configuration diff --git a/charts/open-webui/values.yaml b/charts/open-webui/values.yaml index 6b9565b..837747e 100644 --- a/charts/open-webui/values.yaml +++ b/charts/open-webui/values.yaml @@ -197,11 +197,12 @@ serviceAccount: # -- Enable service account creation # @section -- Service Account configuration enable: true - # -- If create is set to false, include name of existing service account - create: true - # -- Service account name to use. If not set and `serviceAccount.create` is true, a name is generated using the fullname template + # -- If create is set to false, set `name` to existing service account name # @section -- Service Account configuration - name: "" + create: true + # -- Service account name to use. If `ServiceAccount.create` is false, this assumes an existing service account exists with the set name. If not set and `serviceAccount.create` is true, a name is generated using the fullname template. + # @section -- Service Account configuration + name: "existing-sa" # -- Additional annotations to add to the ServiceAccount # @section -- Service Account configuration annotations: {} diff --git a/charts/pipelines/Chart.yaml b/charts/pipelines/Chart.yaml index 68edc7d..a700fab 100644 --- a/charts/pipelines/Chart.yaml +++ b/charts/pipelines/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: pipelines -version: 0.9.0 +version: 0.10.0 appVersion: "alpha" home: https://github.com/open-webui/pipelines diff --git a/charts/pipelines/README.md b/charts/pipelines/README.md index ad2872a..9cd9079 100644 --- a/charts/pipelines/README.md +++ b/charts/pipelines/README.md @@ -1,6 +1,6 @@ # pipelines -![Version: 0.8.0](https://img.shields.io/badge/Version-0.8.0-informational?style=flat-square) ![AppVersion: alpha](https://img.shields.io/badge/AppVersion-alpha-informational?style=flat-square) +![Version: 0.10.0](https://img.shields.io/badge/Version-0.10.0-informational?style=flat-square) ![AppVersion: alpha](https://img.shields.io/badge/AppVersion-alpha-informational?style=flat-square) Pipelines: UI-Agnostic OpenAI API Plugin Framework @@ -33,12 +33,12 @@ helm upgrade --install open-webui open-webui/pipelines | affinity | object | `{}` | Affinity for pod assignment | | annotations | object | `{}` | | | clusterDomain | string | `"cluster.local"` | Value of cluster domain | -| extraLabels | object | `{}` | Additional labels to be added to kubernetes deployment | | commonEnvVars | list | `[]` | Additional environments variables on the output Deployment definition, common across environments. | | containerSecurityContext | object | `{}` | Configure container security context ref: | | extraEnvVars | list | `[{"name":"PIPELINES_URLS","value":"https://github.com/open-webui/pipelines/blob/main/examples/filters/detoxify_filter_pipeline.py"}]` | Additional environments variables on the output Deployment definition. These are used to pull initial Pipeline files, and help configure Pipelines with required values (e.g. Langfuse API keys) | | extraEnvVars[0] | object | `{"name":"PIPELINES_URLS","value":"https://github.com/open-webui/pipelines/blob/main/examples/filters/detoxify_filter_pipeline.py"}` | Example pipeline to pull and load on deployment startup, see current pipelines here: https://github.com/open-webui/pipelines/blob/main/examples | | extraInitContainers | list | `[]` | Additional init containers to add to the deployment ref: | +| extraLabels | object | `{}` | | | extraResources | list | `[]` | Extra resources to deploy with Open WebUI Pipelines | | hostAliases | list | `[]` | HostAliases to be added to hosts-file of each container | | image.pullPolicy | string | `"Always"` | | @@ -74,7 +74,9 @@ helm upgrade --install open-webui open-webui/pipelines | service.port | int | `9099` | | | service.type | string | `"ClusterIP"` | | | serviceAccount.automountServiceAccountToken | bool | `false` | | +| serviceAccount.create | bool | `true` | | | serviceAccount.enable | bool | `true` | | +| serviceAccount.name | string | `""` | | | strategy | object | `{}` | Strategy for updating the deployment | | tolerations | list | `[]` | Tolerations for pod assignment | | volumeMounts | list | `[]` | Configure container volume mounts ref: | diff --git a/charts/pipelines/values.yaml b/charts/pipelines/values.yaml index e103320..89c5bea 100644 --- a/charts/pipelines/values.yaml +++ b/charts/pipelines/values.yaml @@ -45,6 +45,7 @@ persistence: serviceAccount: enable: true create: true + name: "" automountServiceAccountToken: false # -- Configure pod security context