The Kubernetes Series - DaemonSets
A DaemonSet is similar to ReplicaSets in that it runs multiple instances of Pods on multiple nodes. Except that it runs an instance of the DaemonSet Pod on every node. Thus, every node created in a particular namespace on your cluster will run an instance of the defined DaemonSet Pods by default.…