fix(bookstack): point probes at /status instead of / (DEV-528) #7

Merged
forgejoadmin merged 1 commit from fix/DEV-528-bookstack-probes into main 2026-08-23 11:56:58 +00:00

View file

@ -200,7 +200,7 @@ spec:
cpu: "1000m" cpu: "1000m"
livenessProbe: livenessProbe:
httpGet: httpGet:
path: / path: /status
port: 80 port: 80
initialDelaySeconds: 60 initialDelaySeconds: 60
periodSeconds: 10 periodSeconds: 10
@ -208,7 +208,7 @@ spec:
failureThreshold: 6 failureThreshold: 6
readinessProbe: readinessProbe:
httpGet: httpGet:
path: / path: /status
port: 80 port: 80
initialDelaySeconds: 30 initialDelaySeconds: 30
periodSeconds: 5 periodSeconds: 5