nerdexam
Linux_Foundation

KCNA · Question #113

What is the purpose of the kube-proxy?

The correct answer is B. The kube-proxy maintains network rules on nodes.. The kube-proxy maintains network rules on each node, enabling service discovery and load balancing for Kubernetes Services.

Submitted by hassan_iq· May 4, 2026Kubernetes Fundamentals

Question

What is the purpose of the kube-proxy?

Options

  • AThe kube-proxy balances network requests to pods.
  • BThe kube-proxy maintains network rules on nodes.
  • CThe kube-proxy ensures the cluster connectivity with internet.
  • DThe kube-proxy maintains the DNS rules of the cluster.

How the community answered

(40 responses)
  • A
    3% (1)
  • B
    88% (35)
  • C
    5% (2)
  • D
    5% (2)

Why each option

The kube-proxy maintains network rules on each node, enabling service discovery and load balancing for Kubernetes Services.

AThe kube-proxy balances network requests to pods.

While it contributes to load balancing, its primary mechanism is maintaining network rules, not directly balancing requests in the sense of a traditional load balancer.

BThe kube-proxy maintains network rules on nodes.Correct

The kube-proxy runs on each node and implements the Kubernetes Service concept by maintaining network rules (e.g., iptables or IPVS) to route traffic from a Service IP to the correct backend Pods, ensuring network connectivity within the cluster.

CThe kube-proxy ensures the cluster connectivity with internet.

Ensuring cluster connectivity with the internet is typically handled by Ingress controllers, external load balancers, or network gateway configurations, not the kube-proxy itself.

DThe kube-proxy maintains the DNS rules of the cluster.

DNS rules for the cluster are maintained by CoreDNS, which is another crucial Kubernetes component, not the kube-proxy.

Concept tested: Kubernetes kube-proxy function

Source: https://kubernetes.io/docs/reference/command-line-tools-reference/kube-proxy/

Topics

#kube-proxy#Kubernetes networking#Services#Node components

Community Discussion

No community discussion yet for this question.

Full KCNA Practice