Health Checks
Liveness Probe
GET /healthzService liveness probe, no authentication required.
Response 200 OK
{ "status": "ok" }Readiness Probe
GET /readyzService readiness probe, verifies database connection and schema version. No authentication required.
Response
200 OK — Service ready:
{ "status": "ok", "schema_version": "00023" }503 Service Unavailable — Service not ready (database not connected or schema version mismatch):
{
"status": "unavailable",
"reason": "schema version mismatch: expected 00023, got 00020"
}