File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -288,6 +288,8 @@ Production health checks use separate endpoints:
288288 per-dependency timeouts. It returns ` 503 ` when a critical dependency is not ready and ` 200 `
289289 with ` status: degraded ` when only an optional dependency such as Redis is unavailable.
290290- Cloud Run startup and readiness probes use ` /ready ` ; its liveness probe uses ` /health ` .
291+ - The startup probe runs every 10 seconds with a 5-second timeout and allows 30 failures,
292+ giving new revisions up to five minutes to become ready.
291293- ` READINESS_REQUIRE_SUPABASE=true ` and ` READINESS_REQUIRE_NEO4J=true ` make those production
292294 dependencies critical. Both default to ` false ` so local development can run with them disabled.
293295
Original file line number Diff line number Diff line change 2525 httpGet :
2626 path : /ready
2727 port : 8080
28- periodSeconds : 2
28+ periodSeconds : 10
2929 timeoutSeconds : 5
3030 failureThreshold : 30
3131 livenessProbe :
You can’t perform that action at this time.
0 commit comments