Skip to main content
GET
/
healthz
Liveness Probe
curl --request GET \
  --url http://{host}:{port}/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"
}

Response

Operator is alive

status
string
Example:

"ok"

timestamp
string<date-time>