From 32e59538a45dbb5573e8508fe573df1e1ae024d8 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Sun, 23 Nov 2025 16:09:59 +0100 Subject: [PATCH] Update paperless-ngx chart version to 0.25.0 Changed the chart version from 0.25.4 to 0.25.0 in Chart.yaml and README.md to reflect the correct release version. This ensures that users are aware of the currently deployed version of the application. Additionally, updated the configuration in values.yaml by adding the `spec` section under the `readiness` and `liveness` probes. This clarifies the configuration structure and ensures compatibility with the latest Helm chart practices. No breaking changes were introduced in this update. --- 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 b06a2cc..28a5932 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.4 +version: 0.25.0 # 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 4fe1bef..762b34c 100644 --- a/charts/paperless-ngx/README.md +++ b/charts/paperless-ngx/README.md @@ -2,7 +2,7 @@ paperless-ngx logo -![Version: 0.25.4](https://img.shields.io/badge/Version-0.25.4-informational?style=flat) +![Version: 0.25.0](https://img.shields.io/badge/Version-0.25.0-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 14649d3..49873c7 100644 --- a/charts/paperless-ngx/values.yaml +++ b/charts/paperless-ngx/values.yaml @@ -35,10 +35,11 @@ controllers: - http://localhost: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: @@ -50,10 +51,11 @@ controllers: - http://localhost: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.