diff --git a/charts/open-webui/Chart.yaml b/charts/open-webui/Chart.yaml index 18198b3..e82cdee 100644 --- a/charts/open-webui/Chart.yaml +++ b/charts/open-webui/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: open-webui -version: 6.20.0 +version: 6.21.0 appVersion: 0.6.14 home: https://www.openwebui.com/ icon: >- diff --git a/charts/open-webui/README.md b/charts/open-webui/README.md index 5b490cb..d54634d 100644 --- a/charts/open-webui/README.md +++ b/charts/open-webui/README.md @@ -1,6 +1,6 @@ # open-webui -![Version: 6.20.0](https://img.shields.io/badge/Version-6.20.0-informational?style=flat-square) ![AppVersion: 0.6.14](https://img.shields.io/badge/AppVersion-0.6.14-informational?style=flat-square) +![Version: 6.21.0](https://img.shields.io/badge/Version-6.21.0-informational?style=flat-square) ![AppVersion: 0.6.14](https://img.shields.io/badge/AppVersion-0.6.14-informational?style=flat-square) Open WebUI: A User-Friendly Web Interface for Chat Interactions 👋 @@ -167,7 +167,9 @@ helm upgrade --install open-webui open-webui/open-webui |-----|------|---------|-------------| | affinity | object | `{}` | Affinity for pod assignment | | annotations | object | `{}` | | +| args | list | `[]` | Open WebUI container arguments (overrides default) | | clusterDomain | string | `"cluster.local"` | Value of cluster domain | +| command | list | `[]` | Open WebUI container command (overrides default entrypoint) | | commonEnvVars | list | `[]` | Env vars added to the Open WebUI deployment, common across environments. Most up-to-date environment variables can be found here: https://docs.openwebui.com/getting-started/env-configuration/ (caution: environment variables defined in both `extraEnvVars` and `commonEnvVars` will result in a conflict. Avoid duplicates) | | containerSecurityContext | object | `{}` | Configure container security context ref: | | copyAppData.resources | object | `{}` | | diff --git a/charts/open-webui/templates/workload-manager.yaml b/charts/open-webui/templates/workload-manager.yaml index 6bf1242..fdffd70 100644 --- a/charts/open-webui/templates/workload-manager.yaml +++ b/charts/open-webui/templates/workload-manager.yaml @@ -90,6 +90,14 @@ spec: image: {{ .repository }}:{{ .tag | default $.Chart.AppVersion }} imagePullPolicy: {{ .pullPolicy }} {{- end }} + {{- with .Values.command }} + command: + {{- toYaml . | nindent 10 }} + {{- end }} + {{- with .Values.args }} + args: + {{- toYaml . | nindent 10 }} + {{- end }} ports: - name: http containerPort: {{ .Values.service.containerPort }} diff --git a/charts/open-webui/values.yaml b/charts/open-webui/values.yaml index 875c8b7..460550b 100644 --- a/charts/open-webui/values.yaml +++ b/charts/open-webui/values.yaml @@ -130,6 +130,11 @@ image: tag: "" pullPolicy: "IfNotPresent" +# -- Open WebUI container command (overrides default entrypoint) +command: [] +# -- Open WebUI container arguments (overrides default) +args: [] + serviceAccount: enable: true name: ""