From 9c999158ec592372688187661b39697486ba3e92 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 7 Jul 2025 12:05:07 +0200 Subject: [PATCH 1/2] 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 -- 2.49.0 From 6d714483ff01e1ac49dba69aab36ce536f5a4c84 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 7 Jul 2025 12:36:20 +0200 Subject: [PATCH 2/2] Bump version to 0.2.0 and update health checks Updated the Helm chart version for Paperless AI from 0.1.0 to 0.2.0 to reflect the latest enhancements. The liveness and readiness probes were updated to switch the check path from root (/) to /health, which is more appropriate for health checks as it ensures the application is correctly reporting its status. This change helps improve the reliability of service monitoring and health reporting for deployment environments. --- charts/paperless-ai/Chart.yaml | 2 +- charts/paperless-ai/values.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/paperless-ai/Chart.yaml b/charts/paperless-ai/Chart.yaml index 2f9fe56..5d771d7 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.1.0 +version: 0.2.0 appVersion: 3.0.7 keywords: - paperless-ai diff --git a/charts/paperless-ai/values.yaml b/charts/paperless-ai/values.yaml index cd9595e..a9d8297 100644 --- a/charts/paperless-ai/values.yaml +++ b/charts/paperless-ai/values.yaml @@ -69,14 +69,14 @@ persistence: livenessProbe: initialDelaySeconds: 30 httpGet: - path: / - # path: /health + # path: / + path: /health port: http readinessProbe: initialDelaySeconds: 30 httpGet: - path: / - # path: /health + # path: / + path: /health port: http # Sicherheitskontext-Einstellungen für Pod und Container. -- 2.49.0