DEV Community

Discussion on: Understanding Kubernetes: part 32 – DaemonSet

Collapse
 
aurelievache profile image
Aurélie Vache

Daemonset are useful for example if you want to deploy logs collector, node exporters, logs rotate...

If you need to have your application deployed on each node in the cluster, you need to deploy your app in a DaemonSet.

In the real world, you will deploy a lot of deployments, and jobs or CronJobs.

Daemonset, statefulset it's only for certain specific cases.