Compare commits

..

6 Commits

Author SHA1 Message Date
0xThresh
4ced350783 Merge pull request #36 from matthieucharreire/fix/workload-management
fix: use StatefulSet instead of Deployment if persistence is enabled
2024-06-13 13:24:30 -06:00
Matthieu Charreire
72dad958af fix: use StatefulSet if persistence is enabled 2024-06-13 18:14:25 +02:00
0xThresh
bb2bd2fdfe Merge pull request #31 from 0xThresh/fix-pipelines-release
Fix Pipelines release
2024-06-06 18:45:19 -06:00
0xThresh.eth
4ca08e3c9b Fix Pipelines release 2024-06-06 17:43:50 -07:00
0xThresh
3e1493fd69 Merge pull request #30 from 0xThresh/fix-owui-release
Fix Open WebUI chart release
2024-06-06 18:38:24 -06:00
0xThresh.eth
1c5e7f0ca8 Fix Open WebUI chart release 2024-06-06 17:37:37 -07:00
4 changed files with 10 additions and 3 deletions

View File

@@ -2,6 +2,9 @@
## How to Contribute
> [!WARNING]
> There is currently a bug in the Helm Chart Releaser Github Action that prevents you from deploying more than one chart on a single run. The best workaround for now is to ensure that pushes to `main` only include changes to a single chart. If you're contributing to more than one chart, please do it in separate PRs until the upstream issue is fixed, or until we can fork and fix the action ourselves.
1. **Fork the repository** and create your branch from `main`.
2. **Make your changes** and ensure they follow the guidelines below.
3. **Test your changes** locally to ensure everything works as expected. This should include deploying your updates to a live Kubernetes cluster (whether local or remote).

View File

@@ -1,7 +1,7 @@
apiVersion: v2
name: open-webui
version: 3.0.0
appVersion: "0.2.4"
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

View File

@@ -1,5 +1,9 @@
apiVersion: apps/v1
{{- if .Values.persistence.enabled }}
kind: StatefulSet
{{- else }}
kind: Deployment
{{- end }}
metadata:
name: {{ include "open-webui.name" . }}
labels:

View File

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