My pod is failing stress tests. My pod is serving calls asynchronously when Ocp checks for liveness under overload timeout is triggered. Kubernetes values for liveness probe are as follows:
successThreshold: 1
failureThreshold: 3
timeoutSeconds: 10
This makes things even worse for other pods in the replica set and they are all doomed to fail for the same reason.
I am using Quarkus with Mutiny/Vertx for asynch calls, but I think the problem here is generic. How can I give liveness calls priority?
Thanks