mirror of
https://github.com/outbackdingo/helm-charts.git
synced 2026-01-27 10:19:09 +00:00
chore: merge main, fix docs, version updates
This commit is contained in:
@@ -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: >-
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# open-webui
|
||||
|
||||
 
|
||||
 
|
||||
|
||||
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
|
||||
|
||||
|
||||
@@ -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: {}
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# pipelines
|
||||
|
||||
 
|
||||
 
|
||||
|
||||
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/> |
|
||||
|
||||
@@ -45,6 +45,7 @@ persistence:
|
||||
serviceAccount:
|
||||
enable: true
|
||||
create: true
|
||||
name: ""
|
||||
automountServiceAccountToken: false
|
||||
|
||||
# -- Configure pod security context
|
||||
|
||||
Reference in New Issue
Block a user