mirror of
https://github.com/open-webui/helm-charts
synced 2025-06-04 03:49:27 +00:00
Merge pull request #181 from jyje/issue-179/pipelines-update-strategy
This commit is contained in:
commit
a7b9fd5600
@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: pipelines
|
name: pipelines
|
||||||
version: 0.2.0
|
version: 0.3.0
|
||||||
appVersion: "alpha"
|
appVersion: "alpha"
|
||||||
|
|
||||||
home: https://github.com/open-webui/pipelines
|
home: https://github.com/open-webui/pipelines
|
||||||
|
@ -69,6 +69,7 @@ helm upgrade --install open-webui open-webui/pipelines
|
|||||||
| service.type | string | `"ClusterIP"` | |
|
| service.type | string | `"ClusterIP"` | |
|
||||||
| serviceAccount.automountServiceAccountToken | bool | `false` | |
|
| serviceAccount.automountServiceAccountToken | bool | `false` | |
|
||||||
| serviceAccount.enable | bool | `true` | |
|
| serviceAccount.enable | bool | `true` | |
|
||||||
|
| strategy | object | `{}` | Strategy for updating the deployment |
|
||||||
| tolerations | list | `[]` | Tolerations for pod assignment |
|
| tolerations | list | `[]` | Tolerations for pod assignment |
|
||||||
| volumeMounts | list | `[]` | Configure container volume mounts ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/> |
|
| volumeMounts | list | `[]` | Configure container volume mounts ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/> |
|
||||||
| volumes | list | `[]` | Configure pod volumes ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/> |
|
| volumes | list | `[]` | Configure pod volumes ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/> |
|
||||||
|
@ -14,6 +14,10 @@ spec:
|
|||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
{{- include "pipelines.selectorLabels" . | nindent 6 }}
|
{{- include "pipelines.selectorLabels" . | nindent 6 }}
|
||||||
|
{{- with .Values.strategy }}
|
||||||
|
strategy:
|
||||||
|
{{- toYaml . | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
labels:
|
labels:
|
||||||
|
@ -8,6 +8,8 @@ annotations: {}
|
|||||||
podAnnotations: {}
|
podAnnotations: {}
|
||||||
podLabels: {}
|
podLabels: {}
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
# -- Strategy for updating the deployment
|
||||||
|
strategy: {}
|
||||||
image:
|
image:
|
||||||
repository: ghcr.io/open-webui/pipelines
|
repository: ghcr.io/open-webui/pipelines
|
||||||
tag: main
|
tag: main
|
||||||
|
Loading…
Reference in New Issue
Block a user