- Home
- All questions
- Question 928
CKA study material · question 928 of 1000
Which two things can kubectl wait be told to wait for? Choose two.
Show the answer
Answer: A. A condition appearing in a resource's status
C. Resources to be created or deleted
kubectl wait blocks on a status condition, or on --for=create and --for=delete. Log content and rollout revisions are the province of kubectl logs and kubectl rollout status.
Source: kubectl wait (Kubernetes) — Synopsis