Back to Glossary
Kubernetes

What is kubelet?

The agent running on every Kubernetes worker node that manages pod lifecycle.

The kubelet is a process running on every node in a Kubernetes cluster. It watches the API server for Pods assigned to its node, then instructs the container runtime (containerd) to start, stop, and manage those containers. The kubelet reports node and pod status back to the API server, runs liveness and readiness probes, and enforces resource limits via cgroups. If the API server is down, the kubelet continues running its current pods.

Test your knowledge of kubelet and 130 other DevOps concepts