Join us on June 5th for a Tech Talk with Bill Doerrfeld and Kenn Hussey as we discuss the future of open source. Register now
.
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 on 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 Terms