From 6d0764947b82ba608e52518ac28aeeab411754b7 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 7 Jul 2025 11:53:42 +0200 Subject: [PATCH] Bump version to 0.8.0 and update persistence settings This commit updates the Helm chart for Paperless AI from version 0.7.0 to 0.8.0, aligning it with the new app version 3.0.7. The persistent storage configuration is modified by enabling the storageClassName and changing its value to "default". Additionally, the size of the persistent volume claim has been increased from 1Gi to 2Gi to better accommodate data storage needs. These updates are necessary to ensure compatibility with the latest application requirements and to enhance the performance of persistent storage. No breaking changes are introduced with this update. --- charts/paperless-ai/Chart.yaml | 2 +- charts/paperless-ai/values.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/paperless-ai/Chart.yaml b/charts/paperless-ai/Chart.yaml index 2957ef5..9015ffa 100644 --- a/charts/paperless-ai/Chart.yaml +++ b/charts/paperless-ai/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: paperless-ai description: Ein Helm Chart für Paperless AI, basierend auf der Docker Compose Konfiguration. -version: 0.7.0 +version: 0.8.0 appVersion: 3.0.7 keywords: - paperless-ai diff --git a/charts/paperless-ai/values.yaml b/charts/paperless-ai/values.yaml index cd9595e..5dca416 100644 --- a/charts/paperless-ai/values.yaml +++ b/charts/paperless-ai/values.yaml @@ -62,9 +62,9 @@ env: # Konfiguration für persistente Speicherung (Persistent Volume Claim). persistence: enabled: true - storageClassName: "" + storageClassName: "default" accessMode: ReadWriteOnce - size: 1Gi + size: 2Gi livenessProbe: initialDelaySeconds: 30