- Home
- All questions
- Question 920
CKA study material · question 920 of 1000
Which command follows new events for one Pod as they arrive?
Show the answer
Answer: D. kubectl events --for pod/web-pod --watch
--for narrows the event stream to a single object and --watch keeps printing new events as they arrive; kubectl describe is a snapshot.
Source: kubectl events (Kubernetes) — Examples