- Home
- All questions
- Question 632
CKA study material · question 632 of 1000
A team wants a new Pod to be considered available only after it has stayed ready for thirty seconds without a container crashing. Which field expresses that?
Show the answer
Answer: D. minReadySeconds: 30
minReadySeconds is the gap between a Pod being ready and being counted available; the default of 0 makes the two the same moment. A probe delay changes when readiness is first evaluated, not this.
Source: Deployments (Kubernetes) — Writing a Deployment Spec › Min Ready Seconds