From c2937e24376809b8de17ab0cdbcdf521e018dcf3 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 7 Jul 2025 12:43:02 +0200 Subject: [PATCH] Bump paperless-ai chart version to 0.3.0 and update probes Updated the version in Chart.yaml from 0.2.0 to 0.3.0 to reflect the latest release of the paperless-ai application. In the values.yaml file, modified the liveness and readiness probes' HTTP path settings from '/health' to '/' for better compatibility with the application's health check mechanism. This change ensures that the probes work correctly and check the root endpoint, which provides more reliable status information for the application. No breaking changes were introduced. --- charts/paperless-ai/Chart.yaml | 2 +- charts/paperless-ai/values.yaml | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/charts/paperless-ai/Chart.yaml b/charts/paperless-ai/Chart.yaml index 5d771d7..77dc30d 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.2.0 +version: 0.3.0 appVersion: 3.0.7 keywords: - paperless-ai diff --git a/charts/paperless-ai/values.yaml b/charts/paperless-ai/values.yaml index a9d8297..6bdbf27 100644 --- a/charts/paperless-ai/values.yaml +++ b/charts/paperless-ai/values.yaml @@ -69,14 +69,12 @@ persistence: livenessProbe: initialDelaySeconds: 30 httpGet: - # path: / - path: /health + path: / port: http readinessProbe: initialDelaySeconds: 30 httpGet: - # path: / - path: /health + path: / port: http # Sicherheitskontext-Einstellungen für Pod und Container.