Exam 2v0-7123 All QuestionsBrowse all questions from this exam
Question 12

What is the Kubernetes component that is responsible for workload creation?

    Correct Answer: D

    The Kubernetes component responsible for workload creation is the Kubelet. The Kubelet watches for requests to run pods and ensures that containers are running in those pods. It communicates with the API Server to receive the necessary specifications for pod creation and manages the lifecycle of the pods on the worker nodes.

Discussion
contributorOption: B

Scheduler

DS_DTOption: B

B is correct

totto1230Option: B

I agree with the anonymous contributor. Answer should be "B. Scheduler". Please review k8s documentation: https://kubernetes.io/docs/concepts/scheduling-eviction/kube-scheduler/#kube-scheduler

Kk14Option: D

Option D. Question is about component responsible for creation. Scheduler only find a suitable node for placement. But it is kubelet which watches for requests for running pods and runs them on the node designated by scheduler.

Luke_Skywalker01Option: B

https://kubernetes.io/docs/concepts/overview/components/

BilooooOption: D

kubelet : Watches for requests to run pods and starts the pods on the worker node.