DaemonSets

Describe about DaemonSets

Similar to ReplicaSets, it aids in deploying multiple instances of Pods on each Node, making it beneficial for deploying monitoring Pods, kube-proxy, or network Pods. When we add the new Node in the cluster It will create the pod automatically.

How It work ?

It use the default scheduler and Node Affinity to schedule the pod

CheatSheet command

  1. Get DaemonSets: kubectl get daemonsets

Last updated