એક Kubernetes cluster માં બે પ્રકારના મશીનો હોય છે: control plane (એ "મગજ" જે નિર્ણયો લે છે અને state સંગ્રહે છે) અને worker nodes (જ્યાં તમારા Pods ખરેખર ચાલે છે). દરેકમાં સારી રીતે-વ્યાખ્યાયિત ઘટકોનો એક નાનો સમૂહ હોય છે.
મોટું ચિત્ર
┌──────────────── CONTROL PLANE (the brain) ────────────────┐
│ │
│ kube-apiserver ── the front door; ALL comms go through it│
│ │ │
│ etcd ───────── key-value store: the cluster's SOURCE OF │
│ TRUTH (all objects & desired state) │
│ kube-scheduler ── decides WHICH node a new Pod runs on │
│ controller-manager ── runs control loops (reconcilers) │
└──────────────────────────┬─────────────────────────────────┘
│ (apiserver)
┌───────────────────────┼───────────────────────┐
┌──┴─── WORKER NODE ──┐ ┌──┴─── WORKER NODE ──┐ ...
│ kubelet │ │ kubelet │
│ kube-proxy │ │ kube-proxy │
│ container runtime │ │ container runtime │
│ └ Pods (your apps) │ │ └ Pods (your apps) │
└─────────────────────┘ └─────────────────────┘
