What will happen if my kubernetes Pod has a one unhealthy container out of four containers?

10/31/2018

What will happen if my kubernetes Pod has a one unhealthy container out of four containers?

Will my Pod still treated as a healthy Pod?

-- Vinay
kubectl
kubernetes

2 Answers

10/31/2018

no, if any readinessProbe fails, the whole pod is not ready

-- Radek 'Goblin' Pieczonka
Source: StackOverflow

10/31/2018

Like my previous answer, a pod can't go to ready state if any container of that pod is not ready whatever reason is it.

-- Shudipta Sharma
Source: StackOverflow