- Home
- All questions
- Question 977
CKA study material · question 977 of 1000
How is every container of a DaemonSet updated to one image in a single kubectl set image command?
Show the answer
Answer: D. By using an asterisk in place of the container name
kubectl set image normally takes container=image pairs; an asterisk as the container name applies the image to every container in the object.
Source: kubectl set image (Kubernetes) — Examples