Merge pull request #61 from open-webui/bug-reset-config

Fix init container to leave existing files intact
This commit is contained in:
James W. 2024-08-15 21:45:02 -06:00 committed by GitHub
commit 3003028420
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 7 additions and 7 deletions

View File

@ -1,9 +1,9 @@
dependencies:
- name: ollama
repository: https://otwld.github.io/ollama-helm/
version: 0.50.0
version: 0.53.0
- name: pipelines
repository: https://helm.openwebui.com
version: 0.0.3
digest: sha256:91b80e619d25a3822cc861d0ea5a40869172094a59bc7974cf67fb002eea5877
generated: "2024-08-04T18:31:41.380936-06:00"
digest: sha256:4573790c2ec60815cfb1ef3bc4cd0282a69fddc3519db66226dbc770a93113a7
generated: "2024-08-15T21:43:39.894571-06:00"

View File

@ -1,7 +1,7 @@
apiVersion: v2
name: open-webui
version: 3.1.3
appVersion: "0.3.9"
version: 3.1.4
appVersion: "0.3.13"
home: https://www.openwebui.com/
icon: https://raw.githubusercontent.com/open-webui/open-webui/main/static/favicon.png

View File

@ -1,6 +1,6 @@
# open-webui
![Version: 3.1.3](https://img.shields.io/badge/Version-3.1.3-informational?style=flat-square) ![AppVersion: 0.3.9](https://img.shields.io/badge/AppVersion-0.3.9-informational?style=flat-square)
![Version: 3.1.4](https://img.shields.io/badge/Version-3.1.4-informational?style=flat-square) ![AppVersion: 0.3.13](https://img.shields.io/badge/AppVersion-0.3.13-informational?style=flat-square)
Open WebUI: A User-Friendly Web Interface for Chat Interactions 👋

Binary file not shown.

View File

@ -35,7 +35,7 @@ spec:
image: {{ .repository }}:{{ .tag | default $.Chart.AppVersion }}
imagePullPolicy: {{ .pullPolicy }}
{{- end }}
command: ['sh', '-c', 'cp -R /app/backend/data/* /tmp/app-data/']
command: ['sh', '-c', 'cp -R -n /app/backend/data/* /tmp/app-data/']
{{- with .Values.containerSecurityContext }}
securityContext:
{{- toYaml . | nindent 10 }}