Visualizes the components of a Kubernetes cluster, including the Control Plane (API Server, Scheduler, etcd) and Worker Nodes (Kubelet, Kube-proxy, Pods).
graph TB
subgraph ControlPlane [Control Plane]
API[API Server]
Sched[Scheduler]
CM[Controller Manager]
etcd[(etcd)]
API <--> Sched
API <--> CM
API <--> etcd
end
subgraph Node1 [Worker Node 1]
K1[Kubelet]
P1[Kube-proxy]
Pod1[Pod A]
Pod2[Pod B]
K1 --- API
end
subgraph Node2 [Worker Node 2]
K2[Kubelet]
P2[Kube-proxy]
Pod3[Pod C]
K2 --- API
endArchitecture