You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/concepts/workloads/controllers/daemonset.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -230,6 +230,8 @@ storage servers).
230
230
Use a Deployment for stateless services, like frontends, where scaling up and down the
231
231
number of replicas and rolling out updates are more important than controlling exactly which host
232
232
the Pod runs on. Use a DaemonSet when it is important that a copy of a Pod always run on
233
-
all or certain hosts, and when it needs to start before other Pods.
233
+
all or certain hosts, if the DaemonSet provides node-level functionality that allows other Pods to run correctly on that particular node.
234
+
235
+
For example, [network plugins](/docs/concepts/extend-kubernetes/compute-storage-net/network-plugins/) often include a component that runs as a DaemonSet. The DaemonSet component makes sure that the node where it's running has working cluster networking.
0 commit comments