- Home
- All questions
- Question 521
CKA study material · question 521 of 1000
A Job's Pods appear on nodes shortly after the Job is created. What did the Job controller itself actually do?
Show the answer
Answer: B. It asked the API server to create Pod objects
Built-in controllers change the world by writing to the API server. The Job controller creates Pod objects; the scheduler then binds them and the kubelets run them.
Source: Controllers (Kubernetes) — Controller pattern › Control via API server