diff --git a/charts/open-webui/Chart.yaml b/charts/open-webui/Chart.yaml index 99bd7fe..17cb6c7 100644 --- a/charts/open-webui/Chart.yaml +++ b/charts/open-webui/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: open-webui -version: 5.1.1 +version: 5.2.0 appVersion: 0.5.4 home: https://www.openwebui.com/ icon: >- diff --git a/charts/open-webui/README.md b/charts/open-webui/README.md index 0efcc18..b49ac45 100644 --- a/charts/open-webui/README.md +++ b/charts/open-webui/README.md @@ -47,6 +47,7 @@ helm upgrade --install open-webui open-webui/open-webui | copyAppData.resources | object | `{}` | | | extraEnvVars | list | `[{"name":"OPENAI_API_KEY","value":"0p3n-w3bu!"}]` | Env vars added to the Open WebUI deployment. Most up-to-date environment variables can be found here: https://docs.openwebui.com/getting-started/env-configuration/ | | extraEnvVars[0] | object | `{"name":"OPENAI_API_KEY","value":"0p3n-w3bu!"}` | Default API key value for Pipelines. Should be updated in a production deployment, or be changed to the required API key if not using Pipelines | +| extraResources | list | `[]` | Extra resources to deploy with Open WebUI | | image | object | `{"pullPolicy":"IfNotPresent","repository":"ghcr.io/open-webui/open-webui","tag":""}` | Open WebUI image tags can be found here: https://github.com/open-webui/open-webui | | imagePullSecrets | list | `[]` | Configure imagePullSecrets to use private registry ref: | | ingress.additionalHosts | list | `[]` | | diff --git a/charts/open-webui/templates/extra-resources.yaml b/charts/open-webui/templates/extra-resources.yaml new file mode 100644 index 0000000..5124a0b --- /dev/null +++ b/charts/open-webui/templates/extra-resources.yaml @@ -0,0 +1,6 @@ +{{- if .Values.extraResources }} +{{- range .Values.extraResources }} +--- +{{ toYaml . | nindent 0 }} +{{- end }} +{{- end }} diff --git a/charts/open-webui/values.yaml b/charts/open-webui/values.yaml index fb79dcf..946fdc7 100644 --- a/charts/open-webui/values.yaml +++ b/charts/open-webui/values.yaml @@ -205,3 +205,13 @@ containerSecurityContext: # - ALL # seccompProfile: # type: "RuntimeDefault" + +# -- Extra resources to deploy with Open WebUI +extraResources: + [] + # - apiVersion: v1 + # kind: ConfigMap + # metadata: + # name: example-configmap + # data: + # example-key: example-value diff --git a/charts/pipelines/Chart.yaml b/charts/pipelines/Chart.yaml index 20a06ea..e254bd3 100644 --- a/charts/pipelines/Chart.yaml +++ b/charts/pipelines/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: pipelines -version: 0.0.6 +version: 0.1.0 appVersion: "alpha" home: https://github.com/open-webui/pipelines diff --git a/charts/pipelines/README.md b/charts/pipelines/README.md index 8e6b607..2e0dfe3 100644 --- a/charts/pipelines/README.md +++ b/charts/pipelines/README.md @@ -35,6 +35,7 @@ helm upgrade --install open-webui open-webui/pipelines | clusterDomain | string | `"cluster.local"` | Value of cluster domain | | 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 | +| extraResources | list | `[]` | Extra resources to deploy with Open WebUI Pipelines | | image.pullPolicy | string | `"Always"` | | | image.repository | string | `"ghcr.io/open-webui/pipelines"` | | | image.tag | string | `"main"` | | diff --git a/charts/pipelines/templates/extra-resources.yaml b/charts/pipelines/templates/extra-resources.yaml new file mode 100644 index 0000000..5124a0b --- /dev/null +++ b/charts/pipelines/templates/extra-resources.yaml @@ -0,0 +1,6 @@ +{{- if .Values.extraResources }} +{{- range .Values.extraResources }} +--- +{{ toYaml . | nindent 0 }} +{{- end }} +{{- end }} diff --git a/charts/pipelines/values.yaml b/charts/pipelines/values.yaml index 197af4d..0579a0a 100644 --- a/charts/pipelines/values.yaml +++ b/charts/pipelines/values.yaml @@ -87,3 +87,13 @@ extraEnvVars: # key: secret-key # - name: LANGFUSE_HOST # value: https://us.cloud.langfuse.com + +# -- Extra resources to deploy with Open WebUI Pipelines +extraResources: + [] + # - apiVersion: v1 + # kind: ConfigMap + # metadata: + # name: example-configmap + # data: + # example-key: example-value