- Home
- All questions
- 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?
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