chore: merge main, fix docs, version updates

This commit is contained in:
0xThresh.eth
2025-10-18 09:36:58 -06:00
parent d56c7ce3a2
commit b565ff8d8f
6 changed files with 15 additions and 10 deletions

View File

@@ -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: >-

View File

@@ -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

View File

@@ -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: {}

View File

@@ -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

View File

@@ -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: <https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-containe> |
| 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: <https://kubernetes.io/docs/concepts/workloads/pods/init-containers/> |
| 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: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/> |

View File

@@ -45,6 +45,7 @@ persistence:
serviceAccount:
enable: true
create: true
name: ""
automountServiceAccountToken: false
# -- Configure pod security context