Skip to main content
GET
/
healthz
Health Endpoints
curl --request GET \
  --url https://api.example.com/healthz
{
  "status": "ok",
  "timestamp": "2026-03-19T15:00:00Z"
}

Liveness Check

GET /healthz
Returns 200 OK if the operator process is running. No authentication required.
{
  "status": "ok",
  "timestamp": "2026-03-19T15:00:00Z"
}

Readiness Check

GET /readyz
Returns 200 OK if the operator can reach the Kubernetes API server. Returns 503 if not ready.
{
  "status": "ready",
  "timestamp": "2026-03-19T15:00:00Z"
}
{
  "status": "not ready: failed to list namespaces: connection refused",
  "timestamp": "2026-03-19T15:00:00Z"
}