- Home
- All questions
- Question 923
CKA study material · question 923 of 1000
A pipeline runs kubectl rollout status to gate on one particular deployment. A colleague triggers another rollout meanwhile. What happens without extra flags?
Show the answer
Answer: C. The command follows the newer rollout instead
rollout status watches the latest rollout and switches to a newer one that starts meanwhile; --revision=N pins it and aborts if that revision is rolled over.
Source: kubectl rollout status (Kubernetes) — Synopsis