This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user