bazarr: increase liveness probe delay to 120s — startup takes 90+s
Bazarr initializes scheduler, DB, and Radarr/Sonarr connections before serving HTTP. 30s initialDelay was too short, causing restart loops. Also add readinessProbe and failureThreshold for resilience.
This commit is contained in:
@@ -52,8 +52,15 @@ spec:
|
||||
httpGet:
|
||||
path: /
|
||||
port: 6767
|
||||
initialDelaySeconds: 30
|
||||
initialDelaySeconds: 120
|
||||
periodSeconds: 30
|
||||
failureThreshold: 5
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: 6767
|
||||
initialDelaySeconds: 60
|
||||
periodSeconds: 15
|
||||
volumes:
|
||||
- name: config
|
||||
persistentVolumeClaim:
|
||||
|
||||
Reference in New Issue
Block a user