Replies: 1 comment 2 replies
-
After the minReadySeconds elapses, how then will the pod failure detection work? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Since the pod doesn't expose today any liveness endpoints, it's impossible to detect whether the pod is healthy and ready.
We can mitigate this issue by adding
minReadySeconds
tot the pod specs https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#min-ready-seconds.So at least we can wait X seconds in order to ensure that the pod is not failing after helm deployment.
Beta Was this translation helpful? Give feedback.
All reactions