Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 615 Bytes

services-that-run-on-a-kubernetes-node.md

File metadata and controls

9 lines (6 loc) · 615 Bytes

Services That Run On A Kubernetes Node

Category: Kubernetes

Nodes in Kubernetes run the following services:

  • Kubelet - an agent that runs on each node in the cluster and monitors work requests from the API server. The kubelet monitors a node and makes sure that the containers scheduled on each node run as expected.
  • Kube-proxy - responsible for local cluster networking, ensuring the node has a unique IP address. It implements rules to handle routing and load balancing of traffic by using iptables and IPVS.
  • Container runtime - the underlying software that runs containers on a Kubernetes cluster.