mirror of
https://github.com/open-webui/helm-charts
synced 2025-06-15 10:59:41 +00:00
Merge pull request #209 from Xeroxxx/runtimeClassName
feat: Added runtimeClassName to open-webui deployment.
This commit is contained in:
commit
b9686a849e
@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: open-webui
|
name: open-webui
|
||||||
version: 5.25.0
|
version: 5.26.0
|
||||||
appVersion: 0.5.20
|
appVersion: 0.5.20
|
||||||
home: https://www.openwebui.com/
|
home: https://www.openwebui.com/
|
||||||
icon: >-
|
icon: >-
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# open-webui
|
# open-webui
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Open WebUI: A User-Friendly Web Interface for Chat Interactions 👋
|
Open WebUI: A User-Friendly Web Interface for Chat Interactions 👋
|
||||||
|
|
||||||
@ -163,6 +163,7 @@ helm upgrade --install open-webui open-webui/open-webui
|
|||||||
| redis-cluster.replica.replicaCount | int | `3` | Number of Redis replica instances |
|
| redis-cluster.replica.replicaCount | int | `3` | Number of Redis replica instances |
|
||||||
| replicaCount | int | `1` | |
|
| replicaCount | int | `1` | |
|
||||||
| resources | object | `{}` | |
|
| resources | object | `{}` | |
|
||||||
|
| runtimeClassName | string | `""` | Allows changing the Runtime Class. For ex. to "nvidia" if nvidia container runtime is installed but not default. |
|
||||||
| service | object | `{"annotations":{},"containerPort":8080,"labels":{},"loadBalancerClass":"","nodePort":"","port":80,"type":"ClusterIP"}` | Service values to expose Open WebUI pods to cluster |
|
| service | object | `{"annotations":{},"containerPort":8080,"labels":{},"loadBalancerClass":"","nodePort":"","port":80,"type":"ClusterIP"}` | Service values to expose Open WebUI pods to cluster |
|
||||||
| serviceAccount.annotations | object | `{}` | |
|
| serviceAccount.annotations | object | `{}` | |
|
||||||
| serviceAccount.automountServiceAccountToken | bool | `false` | |
|
| serviceAccount.automountServiceAccountToken | bool | `false` | |
|
||||||
|
@ -74,6 +74,9 @@ spec:
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
enableServiceLinks: false
|
enableServiceLinks: false
|
||||||
automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}
|
automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}
|
||||||
|
{{- if .Values.runtimeClassName }}
|
||||||
|
runtimeClassName: {{ .Values.runtimeClassName | quote }}
|
||||||
|
{{- end }}
|
||||||
{{- if .Values.serviceAccount.enable }}
|
{{- if .Values.serviceAccount.enable }}
|
||||||
serviceAccountName: {{ .Values.serviceAccount.name | default (include "open-webui.name" .) }}
|
serviceAccountName: {{ .Values.serviceAccount.name | default (include "open-webui.name" .) }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -266,6 +266,10 @@ extraEnvVars:
|
|||||||
# - name: OLLAMA_DEBUG
|
# - name: OLLAMA_DEBUG
|
||||||
# value: "1"
|
# value: "1"
|
||||||
|
|
||||||
|
# -- Configure runtime class
|
||||||
|
# ref: <https://kubernetes.io/docs/concepts/containers/runtime-class/>
|
||||||
|
runtimeClassName: ""
|
||||||
|
|
||||||
# -- Configure container volume mounts
|
# -- Configure container volume mounts
|
||||||
# ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/>
|
# ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/>
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
|
Loading…
Reference in New Issue
Block a user