Update paperless-ngx to version 0.25.9 and modify probes #52
@@ -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.8
|
||||
version: 0.25.9
|
||||
# renovate datasource=docker depName=ghcr.io/paperless-ngx/paperless-ngx
|
||||
appVersion: 2.20.0
|
||||
kubeVersion: ">=1.28.0-0"
|
||||
|
||||
@@ -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">
|
||||
|
||||

|
||||

|
||||

|
||||

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