fix
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Ehsan.Asadi
2025-12-31 13:00:35 +03:30
parent a1f53c59c7
commit 9e52ffceac

View File

@@ -117,10 +117,10 @@ readinessProbe:
httpGet: httpGet:
path: /ping path: /ping
port: 8000 port: 8000
initialDelaySeconds: 60 # Allow Reflex to fully start (30-60s expected) initialDelaySeconds: 90 # Allow Reflex to fully start (build + startup takes time)
periodSeconds: 10 periodSeconds: 10
timeoutSeconds: 5 timeoutSeconds: 10 # Increased timeout for slow responses
failureThreshold: 6 # Allow 6 failures = 60s grace period failureThreshold: 10 # Allow 10 failures = 100s grace period
# Override liveness probe # Override liveness probe
# Using /live endpoint which is specifically designed for liveness checks # Using /live endpoint which is specifically designed for liveness checks
@@ -128,10 +128,10 @@ livenessProbe:
httpGet: httpGet:
path: /live path: /live
port: 8000 port: 8000
initialDelaySeconds: 90 # More time for liveness (after readiness) initialDelaySeconds: 120 # More time for liveness (after readiness + build)
periodSeconds: 15 periodSeconds: 20 # Check less frequently
timeoutSeconds: 5 timeoutSeconds: 10 # Increased timeout
failureThreshold: 3 failureThreshold: 5 # Allow more failures before restart
configMap: configMap:
data: data: