Snapshotmaster · a231bf3
A control-plane loop where every component observes API objects and steadily reconciles the cluster toward the user's declaration.
Click a building or route
System map8 components · 10 connections
130%
Connections
BuildingsEntryServiceComputeStorageRuntimeToolingExternal
Terms, in plain English
Desired stateThe configuration a user declares, such as three replicas of a Pod template.
How to study this repo
- 1Trace an API write
Follow client-go request construction into API server setup and the etcd storage factory.
- 2Learn reconciliation
Read the Deployment controller and identify its watch, queue, sync function, and API writes.
- 3Cross the node boundary
Trace an assigned Pod through kubelet into the CRI runtime manager, then find where status returns.