I'd like to request a feature: healthcheck endpoint(s). This is useful to keep service healthy and avoid noticeable downtimes. Kubernetes best practices suggest to use /healthz, /livez and /readyz for this purpose (https://kubernetes.io/docs/reference/using-api/health-checks/). While having all 3 of them would be perfect, having at least /healthz seems essential currently.
I'd like to request a feature: healthcheck endpoint(s). This is useful to keep service healthy and avoid noticeable downtimes. Kubernetes best practices suggest to use
/healthz
,/livez
and/readyz
for this purpose (https://kubernetes.io/docs/reference/using-api/health-checks/). While having all 3 of them would be perfect, having at least/healthz
seems essential currently.