feat(pipelines): add strategy for updating deployment

- bump the pipelines chart from 0.2.0 to 0.3.0
This commit is contained in:
jyje 2025-02-20 22:38:57 +09:00
parent a368503b58
commit 7f2b641569
No known key found for this signature in database
GPG Key ID: CFEECE847750DA12
4 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,6 @@
apiVersion: v2
name: pipelines
version: 0.2.0
version: 0.3.0
appVersion: "alpha"
home: https://github.com/open-webui/pipelines

View File

@ -69,6 +69,7 @@ helm upgrade --install open-webui open-webui/pipelines
| service.type | string | `"ClusterIP"` | |
| serviceAccount.automountServiceAccountToken | bool | `false` | |
| serviceAccount.enable | bool | `true` | |
| 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/> |
| volumes | list | `[]` | Configure pod volumes ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/> |

View File

@ -14,6 +14,10 @@ spec:
selector:
matchLabels:
{{- include "pipelines.selectorLabels" . | nindent 6 }}
{{- with .Values.strategy }}
strategy:
{{- toYaml . | nindent 4 }}
{{- end }}
template:
metadata:
labels:

View File

@ -8,6 +8,8 @@ annotations: {}
podAnnotations: {}
podLabels: {}
replicaCount: 1
# -- Strategy for updating the deployment
strategy: {}
image:
repository: ghcr.io/open-webui/pipelines
tag: main