From 6d714483ff01e1ac49dba69aab36ce536f5a4c84 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 7 Jul 2025 12:36:20 +0200 Subject: [PATCH] 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.