Study. uk . com
  1. Home
  2. All questions
  3. Question 869

CKA study material · question 869 of 1000

kubectl describe shows Ready: True for a container that is plainly not serving traffic correctly. What does that column actually mean here?

  1. The container passed its last readiness probe
  2. The container has no readiness probe, so it is assumed ready
  3. The container's liveness probe is passing
  4. The Pod has been admitted by the kubelet
Show the answer

Answer: B. The container has no readiness probe, so it is assumed ready

With no readiness probe configured a container is treated as ready, so Ready: True says nothing about the application's own health.

Source: Debug Running Pods (Kubernetes) — Using kubectl describe pod to fetch details about pods

Challenge yourself on this topic → Study as cards