Skip to content

Commit f1588c0

Browse files
committed
Add feature state for individual health checks
1 parent 8308aab commit f1588c0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

content/en/docs/reference/using-api/health-checks.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ This can be useful for a human operator to debug the current status of the Api s
3131
curl -k https://localhost:6443/livez?verbose
3232
```
3333

34+
or from a remote host with authentication:
35+
36+
```shell
37+
kubectl get --raw='/readyz?verbose'
38+
```
39+
3440
The output will look like this:
3541

3642
[+]ping ok
@@ -83,6 +89,10 @@ The output show that the `etcd` check is excluded:
8389
[+]shutdown ok
8490
healthz check passed
8591

92+
## Individual health checks
93+
94+
{{< feature-state state="alpha" >}}
95+
8696
Each individual health check exposes an http endpoint and could can be checked individually.
8797
The schema for the individual health checks is `/livez/<healthcheck-name>` where `livez` and `readyz` and be used to indicate if you want to check thee liveness or the readiness of the API server.
8898
The `<healthcheck-name>` path can be discovered using the `verbose` flag from above and take the path between `[+]` and `ok`.

0 commit comments

Comments
 (0)