2v0-7123 Exam QuestionsBrowse all questions from this exam

2v0-7123 Exam - Question 12


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

Show Answer
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

6 comments
Sign in to comment
contributorOption: B
Oct 9, 2023

Scheduler

totto1230Option: B
Oct 23, 2023

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

DS_DTOption: B
Dec 25, 2023

B is correct

BilooooOption: D
Nov 21, 2023

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

Luke_Skywalker01Option: B
Feb 13, 2024

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

Kk14Option: D
Apr 3, 2024

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.