You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GET /healthz is a de-facto standard to check if a service is up, running and still healthy. A GET request to /healthz is used as liveness and readiness probe in Kubernetes and OpenShift. Custodia should have a path provider that supports /healthz w/o authentication (potentially limited to requests from localhost).
I suspect that /healthz won't work in the Unix socket case. Kubernetes / OpenShift only support TCP/IP checks. However the also support liveness scripts. A custodia-healthz script may do the trick.
The text was updated successfully, but these errors were encountered:
GET /healthz
is a de-facto standard to check if a service is up, running and still healthy. A GET request to/healthz
is used as liveness and readiness probe in Kubernetes and OpenShift. Custodia should have a path provider that supports /healthz w/o authentication (potentially limited to requests from localhost).I suspect that
/healthz
won't work in the Unix socket case. Kubernetes / OpenShift only support TCP/IP checks. However the also support liveness scripts. Acustodia-healthz
script may do the trick.The text was updated successfully, but these errors were encountered: