KCNA · Question #107
Which item is a Kubernetes node component?
The correct answer is C. kube-proxy. The kube-proxy is a Kubernetes node component responsible for maintaining network rules and facilitating service communication within the cluster.
Question
Which item is a Kubernetes node component?
Options
- Akube-scheduler
- Bkubectl
- Ckube-proxy
- Detcd
How the community answered
(33 responses)- A3% (1)
- B3% (1)
- C88% (29)
- D6% (2)
Why each option
The kube-proxy is a Kubernetes node component responsible for maintaining network rules and facilitating service communication within the cluster.
kube-scheduler is a Kubernetes control plane component responsible for scheduling pods on nodes, not a node component.
kubectl is a command-line tool for interacting with the Kubernetes API server, not a component running within the cluster.
The kube-proxy runs on each node in the cluster and maintains network rules on nodes, allowing network communication to your Pods from inside or outside of the cluster. It acts as a network proxy for Kubernetes services, handling request forwarding and load balancing.
etcd is a distributed key-value store that serves as Kubernetes' backing store for all cluster data, running as a control plane component, not directly on individual worker nodes.
Concept tested: Kubernetes node components
Source: https://kubernetes.io/docs/concepts/overview/components/#node-components
Topics
Community Discussion
No community discussion yet for this question.