fix(homarr): try controller.probes syntax for probe customization

This commit is contained in:
Story Crater Bot
2026-07-22 10:54:40 -07:00
parent acf8184680
commit e2c246cfcd
3 changed files with 23 additions and 44 deletions
+21 -9
View File
@@ -1,5 +1,5 @@
# Homarr landing page - minimal working config
# App takes ~30 seconds to fully initialize (DB migrations, Redis, icon cache)
# Homarr landing page
# Chart version: 8.23.0 from homarr-labs/charts
image:
repository: ghcr.io/homarr-labs/homarr
@@ -8,13 +8,25 @@ image:
replicaCount: 1
# Disable default probes - they kill the container before it finishes startup
# Will add custom probes via Kustomize patch with proper timing
livenessProbe:
enabled: false
readinessProbe:
enabled: false
# Override probe timing - app needs 30-45s to fully initialize
controller:
probes:
liveness:
enabled: true
custom: false
spec:
initialDelaySeconds: 60
periodSeconds: 30
timeoutSeconds: 5
failureThreshold: 3
readiness:
enabled: true
custom: false
spec:
initialDelaySeconds: 45
periodSeconds: 15
timeoutSeconds: 5
failureThreshold: 3
tolerations:
- key: node-role.kubernetes.io/control-plane