Skip to content

Commit

Permalink
Clarify At-Most-One Semantic For DaemonSet Update (kubernetes#19283)
Browse files Browse the repository at this point in the history
* Clarify At-Most-One Semantic For DaemonSet Update

Make it explicit, that at most one pod will run on each node while updating a daemonset. As mentioned here: kubernetes/kubernetes#48841

* Clarify Update Strategy For DaemonSet Pods Only
  • Loading branch information
abhishekjiitr authored Mar 3, 2020
1 parent 2cfbdac commit c04ffcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/en/docs/tasks/manage-daemon/update-daemon-set.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ DaemonSet has two update strategy types:
* RollingUpdate: This is the default update strategy.
With `RollingUpdate` update strategy, after you update a
DaemonSet template, old DaemonSet pods will be killed, and new DaemonSet pods
will be created automatically, in a controlled fashion.
will be created automatically, in a controlled fashion. At most one pod of the DaemonSet will be running on each node during the whole update process.

## Performing a Rolling Update

Expand Down

0 comments on commit c04ffcd

Please sign in to comment.