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:
path: /ping
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
timeoutSeconds: 5
failureThreshold: 6 # Allow 6 failures = 60s grace period
timeoutSeconds: 10 # Increased timeout for slow responses
failureThreshold: 10 # Allow 10 failures = 100s grace period
# Override liveness probe
# Using /live endpoint which is specifically designed for liveness checks
@@ -128,10 +128,10 @@ livenessProbe:
httpGet:
path: /live
port: 8000
initialDelaySeconds: 90 # More time for liveness (after readiness)
periodSeconds: 15
timeoutSeconds: 5
failureThreshold: 3
initialDelaySeconds: 120 # More time for liveness (after readiness + build)
periodSeconds: 20 # Check less frequently
timeoutSeconds: 10 # Increased timeout
failureThreshold: 5 # Allow more failures before restart
configMap:
data: