0
0
Kubernetesdevops~5 mins

Kubernetes architecture (control plane and nodes) - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the role of the Kubernetes control plane?
The control plane manages the Kubernetes cluster. It makes decisions like scheduling pods, responding to cluster events, and maintaining the desired state of the cluster.
Click to reveal answer
beginner
Name the main components of the Kubernetes control plane.
The main components are: API Server, Scheduler, Controller Manager, and etcd (the key-value store).
Click to reveal answer
beginner
What is a Kubernetes node?
A node is a worker machine in Kubernetes. It runs the applications and services inside containers.
Click to reveal answer
intermediate
What components run on a Kubernetes node?
Each node runs kubelet (agent), container runtime (like Docker or containerd), and kube-proxy (networking).
Click to reveal answer
intermediate
How does the control plane communicate with nodes?
The control plane communicates with nodes through the API Server. Nodes run kubelet which talks to the API Server to receive instructions and report status.
Click to reveal answer
Which component stores the cluster state in Kubernetes?
Akube-proxy
Bkubelet
CScheduler
Detcd
What is the main function of the kubelet on a node?
ASchedule pods to nodes
BManage network traffic
CRun containers and report node status
DStore cluster data
Which component is responsible for scheduling pods to nodes?
AScheduler
BAPI Server
CController Manager
Dkube-proxy
What does kube-proxy do on a Kubernetes node?
ARuns containers
BManages network rules for pod communication
CStores cluster state
DSchedules pods
How does the control plane maintain the desired state of the cluster?
ABy using the Controller Manager to monitor and adjust resources
BBy running containers directly
CBy storing data in kubelet
DBy managing network traffic
Explain the roles of the Kubernetes control plane components and how they work together.
Think of the control plane as the brain of the cluster coordinating everything.
You got /4 concepts.
    Describe what happens on a Kubernetes node and the role of its components.
    Nodes are like workers that run the actual applications.
    You got /3 concepts.