> For the complete documentation index, see [llms.txt](https://dev7days.gitbook.io/dev7days/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev7days.gitbook.io/dev7days/scheduling/daemonsets.md).

# 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`
