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

This commit is contained in:
Ehsan.Asadi
2025-12-31 14:00:22 +03:30
parent 63ae156627
commit 7aace12809

View File

@@ -119,10 +119,10 @@ readinessProbe:
port: 8000
# host: localhost
scheme: HTTP
initialDelaySeconds: 90 # Allow Reflex to fully start (build + startup takes time)
initialDelaySeconds: 30 # Allow Reflex to fully start (build + startup takes time)
periodSeconds: 10
timeoutSeconds: 10 # Increased timeout for slow responses
failureThreshold: 10 # Allow 10 failures = 100s grace period
timeoutSeconds: 5 # Increased timeout for slow responses
failureThreshold: 5 # Allow 10 failures = 100s grace period
# Override liveness probe
# Using /live endpoint which is specifically designed for liveness checks
@@ -132,9 +132,9 @@ livenessProbe:
port: 8000
# host: localhost
scheme: HTTP
initialDelaySeconds: 120 # More time for liveness (after readiness + build)
periodSeconds: 20 # Check less frequently
timeoutSeconds: 10 # Increased timeout
initialDelaySeconds: 30 # More time for liveness (after readiness + build)
periodSeconds: 10 # Check less frequently
timeoutSeconds: 5 # Increased timeout
failureThreshold: 5 # Allow more failures before restart
configMap: