We all know etcd is the brain of Kubernetes. It stores all the cluster state - nodes, pods, configs, secrets, and everything in between.
When you kubectl apply something, Kubernetes updates etcd.
The API server constantly reads and writes to etcd, ma...