What's the meaning of "READY=2/2" output by command "kubectl get pod $yourpod" What's the meaning of "READY=2/2" output by command "kubectl get pod $yourpod" kubernetes kubernetes

What's the meaning of "READY=2/2" output by command "kubectl get pod $yourpod"


it shows how many containers in a pod are considered ready. You can have some containers starting faster then others or having their readiness checks not yet fulfilled (or still in initial delay). In such cases there will be less containers ready in pod then their total number (ie. 1/2) hence the whole pod will not be considered ready.