From 9c999158ec592372688187661b39697486ba3e92 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 7 Jul 2025 12:05:07 +0200 Subject: [PATCH] Update Paperless AI chart version and persistence settings The version of the Paperless AI Helm chart has been updated from 0.8.0 to 0.1.0 in the Chart.yaml file to reflect a new release cycle. Additionally, the storageClassName in the values.yaml file has been modified from "default" to an empty string to allow for a more flexible storage backend configuration. Furthermore, the size of the persistent volume has been decreased from 2Gi to 1Gi to optimize resource allocation and usage based on current application needs. These changes are necessary to ensure that the chart aligns with the latest application updates and resource requirements. --- 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 9015ffa..2f9fe56 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.8.0 +version: 0.1.0 appVersion: 3.0.7 keywords: - paperless-ai diff --git a/charts/paperless-ai/values.yaml b/charts/paperless-ai/values.yaml index 5dca416..cd9595e 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: "default" + storageClassName: "" accessMode: ReadWriteOnce - size: 2Gi + size: 1Gi livenessProbe: initialDelaySeconds: 30