Another question, in Http4k, it seems the Health o...
# http4k
r
Another question, in Http4k, it seems the Health object defines two default routes “/liveness” and “/readiness” while for example in kubernetes and some other places “/liveness” is actually referred to as “healthz”, I was wondering if this is normal. I wanted to put it under /healthz, but by default I have the /liveness doing the basic liveness check instead.
d
You can configure these 2 paths in your kubenetes chart, or just create a new composite routes block and remap them yourself.
r
Thanks david ^_^