Skip to content

Commit

Permalink
fix: use StatefulSet if persistence is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieucharreire committed Jun 13, 2024
1 parent bb2bd2f commit 72dad95
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/open-webui/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: open-webui
version: 3.0.1
appVersion: "0.2.5"
version: 3.0.2
appVersion: "v0.3.4"

home: https://www.openwebui.com/
icon: https://raw.githubusercontent.com/open-webui/open-webui/main/static/favicon.png
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
apiVersion: apps/v1
{{- if .Values.persistence.enabled }}
kind: StatefulSet
{{- else }}
kind: Deployment
{{- end }}
metadata:
name: {{ include "open-webui.name" . }}
labels:
Expand Down

0 comments on commit 72dad95

Please sign in to comment.