Rethink platform engineering and developer impact in the age of AI. Tune in to our webinar on Thursday, May 22.

Back to Kubernetes Glossary

Kube-Proxy

What is a kube-proxy?

Kube-proxy is the routing layer used by Kubernetes to route traffic between nodes in a cluster. Built on iptables, kube-proxy operates at Layer 4, e.g., it routes TCP, UDP, and SCTP.

Impact today

Most traffic inside a cluster today operates at Layer 7 (e.g., HTTP, gRPC). Because kube-proxy routes at Layer 4, this can impact optimal load balancing within a cluster, depending on workload.

Related items