From 5a9e030548f0d96f32e1444a5bdabf25bfb9fcf5 Mon Sep 17 00:00:00 2001 From: Alex Nederlof Date: Thu, 28 Nov 2024 20:45:52 +0100 Subject: [PATCH] Fix Pipelines persistance I might not fully understand, but currently the pipelines are not persisted between restarts because they are stored in `/app/piplines` which is not the current persistent volume. That one is `/app/backend/data`. `/app/backend/data` is mentioned in [the Openweb-ui readme](https://github.com/open-webui/open-webui/blob/0a26c41c7b58300f37348ba580a4f0d682ca5fbd/README.md#L90) but I see no mention of it in the pipelines repo. --- charts/pipelines/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/pipelines/templates/deployment.yaml b/charts/pipelines/templates/deployment.yaml index accbdb2..8da01d3 100644 --- a/charts/pipelines/templates/deployment.yaml +++ b/charts/pipelines/templates/deployment.yaml @@ -42,7 +42,7 @@ spec: {{- end }} volumeMounts: - name: data - mountPath: /app/backend/data + mountPath: /app/pipelines env: {{- if .Values.extraEnvVars }} {{- toYaml .Values.extraEnvVars | nindent 8 }}