C_CPE_2409 · Question #38
What is the primary function of kubectl?
The correct answer is B. To interact with the Kubernetes API to manage cluster resources. kubectl is the command-line tool that communicates directly with the Kubernetes API server, allowing you to create, read, update, and delete cluster resources like pods, deployments, and services - making B correct. Options A, C, and D describe functions of separate tools…
Question
What is the primary function of kubectl?
Options
- ATo configure storage systems
- BTo interact with the Kubernetes API to manage cluster resources
- CTo set up cloud environments
- DTo create virtual networks
How the community answered
(18 responses)- A6% (1)
- B89% (16)
- D6% (1)
Explanation
kubectl is the command-line tool that communicates directly with the Kubernetes API server, allowing you to create, read, update, and delete cluster resources like pods, deployments, and services - making B correct. Options A, C, and D describe functions of separate tools: storage configuration is handled by systems like CSI drivers or cloud-native storage solutions, cloud environment setup uses tools like Terraform or cloud CLIs, and virtual network creation belongs to CNI plugins or cloud networking services - none of which are kubectl's domain. A helpful memory tip: break down the name - kubernetes control - kubectl is your control interface to Kubernetes, the one tool you use to tell the cluster what to do.
Topics
Community Discussion
No community discussion yet for this question.