Bump version to 0.25.10 and update readiness/liveness probes
All checks were successful
Build Helm Chart / helm-package (push) Successful in 21s

Updated the Paperless-ngx Helm chart version to 0.25.10. The
README and Chart.yaml files were modified to reflect this new
version. Additionally, the readiness and liveness probes in the
values.yaml were changed from EXEC type to HTTP type for better
monitoring and consistency. This adjustment ensures that the probes
directly check the application’s health through HTTP requests to
the main path, improving the reliability of the health checks.
No breaking changes are introduced, but users should verify that
the application responds correctly to the new health check
configuration.
This commit is contained in:
2025-11-23 16:50:33 +01:00
parent 27a30f6041
commit 872ada2e0c
3 changed files with 8 additions and 16 deletions

View File

@@ -4,7 +4,7 @@ description: "A community-supported supercharged version of paperless: scan, ind
home: https://charts.gabe565.com/charts/paperless-ngx/ 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 icon: https://raw.githubusercontent.com/paperless-ngx/paperless-ngx/b948750/src-ui/src/assets/logo-notext.svg
type: application type: application
version: 0.25.9 version: 0.25.10
# renovate datasource=docker depName=ghcr.io/paperless-ngx/paperless-ngx # renovate datasource=docker depName=ghcr.io/paperless-ngx/paperless-ngx
appVersion: 2.20.0 appVersion: 2.20.0
kubeVersion: ">=1.28.0-0" kubeVersion: ">=1.28.0-0"

View File

@@ -2,7 +2,7 @@
<img src="https://raw.githubusercontent.com/paperless-ngx/paperless-ngx/b948750/src-ui/src/assets/logo-notext.svg" align="right" width="92" alt="paperless-ngx logo"> <img src="https://raw.githubusercontent.com/paperless-ngx/paperless-ngx/b948750/src-ui/src/assets/logo-notext.svg" align="right" width="92" alt="paperless-ngx logo">
![Version: 0.25.9](https://img.shields.io/badge/Version-0.25.9-informational?style=flat) ![Version: 0.25.10](https://img.shields.io/badge/Version-0.25.10-informational?style=flat)
![Type: application](https://img.shields.io/badge/Type-application-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) ![AppVersion: 2.20.0](https://img.shields.io/badge/AppVersion-2.20.0-informational?style=flat)

View File

@@ -28,13 +28,9 @@ controllers:
# 1. Readiness Probe (Wichtigste für den Traffic-Fluss) # 1. Readiness Probe (Wichtigste für den Traffic-Fluss)
readiness: readiness:
enabled: true enabled: true
type: EXEC # Verwendung des HTTP GET-Typs type: HTTP # Verwendung des HTTP GET-Typs
#path: / # Prüft den Hauptpfad (Webserver antwortet nur, wenn DB/Redis verbunden sind) path: / # Prüft den Hauptpfad (Webserver antwortet nur, wenn DB/Redis verbunden sind)
#port: 8000 # Paperless-ngx läuft standardmäßig auf 8000 port: 8000 # Paperless-ngx läuft standardmäßig auf 8000
command:
- /usr/bin/curl
- -f
- http://localhost:8000
# Wichtige Timing-Einstellungen für Paperless-ngx # Wichtige Timing-Einstellungen für Paperless-ngx
spec: spec:
@@ -46,13 +42,9 @@ controllers:
# 2. Liveness Probe (Wichtig für das Neustarten des Containers bei Absturz) # 2. Liveness Probe (Wichtig für das Neustarten des Containers bei Absturz)
liveness: liveness:
enabled: true enabled: true
type: EXEC type: HTTP
#path: / path: /
#port: 8000 port: 8000
command:
- /usr/bin/curl
- -f
- http://localhost:8000
# Die Liveness Probe sollte eine längere Verzögerung haben # Die Liveness Probe sollte eine längere Verzögerung haben
spec: spec: