Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 8

Agenda

• Kubernetes Overview.
• Kubernetes components and Architecture.

• Reference
Kubernetes
Kubernetes Architecture
Master
• A Kubernetes cluster consists of the control plane and a set of worker
machines, called nodes.
• The control plane is responsible for managing Kubernetes infrastructure.

The control plane component includes:

• The API Server acts as the primary gateway to the Kubernetes cluster and
provides a set of APIs that users and other components can access.
• etcd is a dependable, distributed, and fast key-value store that Kubernetes
employs to store all cluster data.
• The Scheduler is responsible for determining where to place new pods
within the cluster.
• The Controllers are accountable for ensuring that the current state of the
cluster aligns with the desired state.
Worker Node
components operate on the worker nodes:

• Kubelet, which runs on each worker node, is responsible for launching


containers.
• Kube-proxy is in charge of Kubernetes internal networking and service
discovery.
• The Container runtime is responsible for executing the containers.

You might also like