Kubernetes Components
An overview of the key components that make up a Kubernetes cluster. This page provides a high-level overview of the essential components that make up a Kubernetes cluster. View source diagram: Components of Kubernetes The components of a Kubernetes cluster Core Components A Kubernetes cluster consi
1h ago
This page provides a high-level overview of the essential components that make up a Kubernetes cluster.
Open diagram: Components of KubernetesThe components of a Kubernetes cluster
Core Components
A Kubernetes cluster consists of a control plane and one or more worker nodes. Here's a brief overview of the main components:
Control Plane Components
Manage the overall state of the cluster:
kube-apiserverThe core component server that exposes the Kubernetes HTTP API.etcdConsistent and highly-available key value store for all API server data.kube-schedulerLooks for Pods not yet bound to a node, and assigns each Pod to a suitable node.kube-controller-managerRuns controllers to implement Kubernetes API behavior.cloud-controller-manager (optional)Integrates with underlying cloud provider(s).Node Components
Run on every node, maintaining running pods and providing the Kubernetes runtime environment:
kubeletEnsures that Pods are running, including their containers.kube-proxy (optional)Maintains network rules on nodes to implement Services.Container runtimeSoftware responsible for running containers. Read Container Runtimes to learn more.🛇 This item links to a third party project or product that is not part of Kubernetes itself. More informationYour cluster may require additional software on each node; for example, you might also run systemd on a Linux node to supervise local components.
Addons
Addons extend the functionality of Kubernetes. A few important examples include:
DNSFor cluster-wide DNS resolution.Web UI (Dashboard)For cluster management via a web interface.Container Resource MonitoringFor collecting and storing container metrics.Cluster-level LoggingFor saving container logs to a central log store.Flexibility in Architecture
Kubernetes allows for flexibility in how these components are deployed and managed. The architecture can be adapted to various needs, from small development environments to large-scale production deployments.
For more detailed information about each component and various ways to configure your cluster architecture, see the Cluster Architecture page.
Last modified May 30, 2026 at 6:09 PM PST: Add theme_lock front matter to concepts overview pages (6e5065edcf)