nerdexam
Linux_Foundation

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.

Submitted by krish.m· May 4, 2026Kubernetes Fundamentals

Question

Which item is a Kubernetes node component?

Options

  • Akube-scheduler
  • Bkubectl
  • Ckube-proxy
  • Detcd

How the community answered

(33 responses)
  • A
    3% (1)
  • B
    3% (1)
  • C
    88% (29)
  • D
    6% (2)

Why each option

The kube-proxy is a Kubernetes node component responsible for maintaining network rules and facilitating service communication within the cluster.

Akube-scheduler

kube-scheduler is a Kubernetes control plane component responsible for scheduling pods on nodes, not a node component.

Bkubectl

kubectl is a command-line tool for interacting with the Kubernetes API server, not a component running within the cluster.

Ckube-proxyCorrect

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.

Detcd

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

#Kubernetes Architecture#Node Components#kube-proxy#Core Components

Community Discussion

No community discussion yet for this question.

Full KCNA Practice