Kubernetes Guide
  • Kubernetes Guide
  • Kubernetes Components
    • Master Components
      • cloud-controller-manager
      • etcd
      • kube-apiserver
      • kube-controller-manager
      • kube-scheduler
    • Node Components
      • Container Runtime
      • kubelet
      • kube-proxy
  • Kubernetes Objects
    • Pods
  • Kubernetes Concepts
    • Networking
  • Minikube
    • References
Powered by GitBook
On this page

Was this helpful?

  1. Kubernetes Components
  2. Node Components

kube-proxy

Network proxy implementing the Kubernetes Service concept

PreviouskubeletNextPods

Last updated 5 years ago

Was this helpful?

is a network proxy that runs on each node in your cluster, implementing part of the Kubernetes concept.

kube-proxy maintains network rules on nodes. These network rules allow network communication to your Pods from network sessions inside or outside of your cluster.

kube-proxy uses the operating system packet filtering layer if there is one and it’s available. Otherwise, kube-proxy forwards the traffic itself

kube-proxy
Service