Check liveness
Always returns 200 with {"status":"ok"}. Mounted outside the
auth + CIDR middleware chain so it works for k8s / load-balancer
probes that do not (and shouldn’t) carry Bearer tokens. Intended
for kubelet livenessProbe — failing this triggers a pod restart.
GET
/healthResponses
200Process is alive.
statusstringrequiredAllowed:
okRequest
curl -X GET "http://localhost:8080/health"const response = await fetch("http://localhost:8080/health", {
method: "GET"
});import requests
response = requests.get(
"http://localhost:8080/health",
)Response
{
"status": "ok"
}