From acf95d58a3cce78b2b1cf6d26be827969bad537a Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Sun, 23 Nov 2025 16:26:06 +0100 Subject: [PATCH] Bump paperless-ngx version to 0.25.7 and update probes Updated the paperless-ngx Helm chart to version 0.25.7 from 0.25.6 to incorporate the latest features and fixes. The appVersion remains at 2.20.0. Additionally, modified the liveness and readiness probes configuration in the values.yaml file to nest probe options under the spec field, aligning with best practices for Helm charts. These changes normalize the probe specifications, ensuring better compatibility and clarity for users managing their Kubernetes deployments. No breaking changes were introduced in these updates. --- charts/paperless-ngx/Chart.yaml | 2 +- charts/paperless-ngx/README.md | 2 +- charts/paperless-ngx/values.yaml | 18 ++++++++++-------- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/charts/paperless-ngx/Chart.yaml b/charts/paperless-ngx/Chart.yaml index 55b2982..8aa11a3 100644 --- a/charts/paperless-ngx/Chart.yaml +++ b/charts/paperless-ngx/Chart.yaml @@ -4,7 +4,7 @@ description: "A community-supported supercharged version of paperless: scan, ind home: https://charts.gabe565.com/charts/paperless-ngx/ icon: https://raw.githubusercontent.com/paperless-ngx/paperless-ngx/b948750/src-ui/src/assets/logo-notext.svg type: application -version: 0.25.6 +version: 0.25.7 # renovate datasource=docker depName=ghcr.io/paperless-ngx/paperless-ngx appVersion: 2.20.0 kubeVersion: ">=1.28.0-0" diff --git a/charts/paperless-ngx/README.md b/charts/paperless-ngx/README.md index 273e7ae..6c9e837 100644 --- a/charts/paperless-ngx/README.md +++ b/charts/paperless-ngx/README.md @@ -2,7 +2,7 @@ paperless-ngx logo -![Version: 0.25.6](https://img.shields.io/badge/Version-0.25.6-informational?style=flat) +![Version: 0.25.7](https://img.shields.io/badge/Version-0.25.7-informational?style=flat) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat) ![AppVersion: 2.20.0](https://img.shields.io/badge/AppVersion-2.20.0-informational?style=flat) diff --git a/charts/paperless-ngx/values.yaml b/charts/paperless-ngx/values.yaml index 01d099a..1a42e12 100644 --- a/charts/paperless-ngx/values.yaml +++ b/charts/paperless-ngx/values.yaml @@ -33,10 +33,11 @@ controllers: port: 8000 # Paperless-ngx läuft standardmäßig auf 8000 # Wichtige Timing-Einstellungen für Paperless-ngx - initialDelaySeconds: 60 # Warten Sie 60 Sekunden, bevor Sie mit der Prüfung beginnen, da Paperless-ngx lange booten kann - periodSeconds: 10 - timeoutSeconds: 5 - failureThreshold: 5 # 5 aufeinanderfolgende Fehler, bevor der Pod als "not ready" gilt + spec: + initialDelaySeconds: 60 # Warten Sie 60 Sekunden, bevor Sie mit der Prüfung beginnen, da Paperless-ngx lange booten kann + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 5 # 5 aufeinanderfolgende Fehler, bevor der Pod als "not ready" gilt # 2. Liveness Probe (Wichtig für das Neustarten des Containers bei Absturz) liveness: @@ -46,10 +47,11 @@ controllers: port: 8000 # Die Liveness Probe sollte eine längere Verzögerung haben - initialDelaySeconds: 120 - periodSeconds: 60 - timeoutSeconds: 5 - failureThreshold: 3 + spec: + initialDelaySeconds: 120 + periodSeconds: 60 + timeoutSeconds: 5 + failureThreshold: 3 service: # -- Configures service settings for the chart.