mirror of https://github.com/docker/cli.git
Add failure action for rolling updates
This changes the default behavior so that rolling updates will not proceed once an updated task fails to start, or stops running during the update. Users can use docker service inspect --pretty servicename to see the update status, and if it pauses due to a failure, it will explain that the update is paused, and show the task ID that caused it to pause. It also shows the time since the update started. A new --update-on-failure=(pause|continue) flag selects the behavior. Pause means the update stops once a task fails, continue means the old behavior of continuing the update anyway. In the future this will be extended with additional behaviors like automatic rollback, and flags controlling parameters like how many tasks need to fail for the update to stop proceeding. This is a minimal solution for 1.12. Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
This commit is contained in:
parent
897dc90656
commit
b41c3dd208
|
@ -1726,6 +1726,7 @@ _docker_service_update() {
|
|||
--restart-window
|
||||
--stop-grace-period
|
||||
--update-delay
|
||||
--update-failure-action
|
||||
--update-parallelism
|
||||
--user -u
|
||||
--workdir -w
|
||||
|
|
|
@ -1094,6 +1094,7 @@ __docker_service_subcommand() {
|
|||
"($help)--restart-window=[Window used to evaluate the restart policy]:window: "
|
||||
"($help)--stop-grace-period=[Time to wait before force killing a container]:grace period: "
|
||||
"($help)--update-delay=[Delay between updates]:delay: "
|
||||
"($help)--update-failure-action=[Action on update failure]:mode:(pause continue)"
|
||||
"($help)--update-parallelism=[Maximum number of tasks updated simultaneously]:number: "
|
||||
"($help -u --user)"{-u=,--user=}"[Username or UID]:user:_users"
|
||||
"($help)--with-registry-auth[Send registry authentication details to swarm agents]"
|
||||
|
|
|
@ -40,6 +40,7 @@ Options:
|
|||
--restart-window value Window used to evaluate the restart policy (default none)
|
||||
--stop-grace-period value Time to wait before force killing a container (default none)
|
||||
--update-delay duration Delay between updates
|
||||
--update-failure-action string Action on update failure (pause|continue) (default "pause")
|
||||
--update-parallelism uint Maximum number of tasks updated simultaneously (0 to update all at once) (default 1)
|
||||
-u, --user string Username or UID
|
||||
--with-registry-auth Send registry authentication details to Swarm agents
|
||||
|
|
|
@ -47,6 +47,7 @@ Options:
|
|||
--restart-window value Window used to evaluate the restart policy (default none)
|
||||
--stop-grace-period value Time to wait before force killing a container (default none)
|
||||
--update-delay duration Delay between updates
|
||||
--update-failure-action string Action on update failure (pause|continue) (default "pause")
|
||||
--update-parallelism uint Maximum number of tasks updated simultaneously (0 to update all at once) (default 1)
|
||||
-u, --user string Username or UID
|
||||
--with-registry-auth Send registry authentication details to Swarm agents
|
||||
|
|
Loading…
Reference in New Issue