mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
misleading default for --update-monitor duration
Signed-off-by: erxian <evelynhsu21@gmail.com>
This commit is contained in:
parent
613334eb50
commit
3e6ff87f69
3 changed files with 3 additions and 3 deletions
|
@ -491,7 +491,7 @@ func addServiceFlags(cmd *cobra.Command, opts *serviceOptions) {
|
||||||
|
|
||||||
flags.Uint64Var(&opts.update.parallelism, flagUpdateParallelism, 1, "Maximum number of tasks updated simultaneously (0 to update all at once)")
|
flags.Uint64Var(&opts.update.parallelism, flagUpdateParallelism, 1, "Maximum number of tasks updated simultaneously (0 to update all at once)")
|
||||||
flags.DurationVar(&opts.update.delay, flagUpdateDelay, time.Duration(0), "Delay between updates (ns|us|ms|s|m|h) (default 0s)")
|
flags.DurationVar(&opts.update.delay, flagUpdateDelay, time.Duration(0), "Delay between updates (ns|us|ms|s|m|h) (default 0s)")
|
||||||
flags.DurationVar(&opts.update.monitor, flagUpdateMonitor, time.Duration(0), "Duration after each task update to monitor for failure (ns|us|ms|s|m|h) (default 0s)")
|
flags.DurationVar(&opts.update.monitor, flagUpdateMonitor, time.Duration(0), "Duration after each task update to monitor for failure (ns|us|ms|s|m|h)")
|
||||||
flags.SetAnnotation(flagUpdateMonitor, "version", []string{"1.25"})
|
flags.SetAnnotation(flagUpdateMonitor, "version", []string{"1.25"})
|
||||||
flags.StringVar(&opts.update.onFailure, flagUpdateFailureAction, "pause", `Action on update failure ("pause"|"continue"|"rollback")`)
|
flags.StringVar(&opts.update.onFailure, flagUpdateFailureAction, "pause", `Action on update failure ("pause"|"continue"|"rollback")`)
|
||||||
flags.Var(&opts.update.maxFailureRatio, flagUpdateMaxFailureRatio, "Failure rate to tolerate during an update")
|
flags.Var(&opts.update.maxFailureRatio, flagUpdateMaxFailureRatio, "Failure rate to tolerate during an update")
|
||||||
|
|
|
@ -71,7 +71,7 @@ Options:
|
||||||
--update-delay duration Delay between updates (ns|us|ms|s|m|h) (default 0s)
|
--update-delay duration Delay between updates (ns|us|ms|s|m|h) (default 0s)
|
||||||
--update-failure-action string Action on update failure ("pause"|"continue"|"rollback") (default "pause")
|
--update-failure-action string Action on update failure ("pause"|"continue"|"rollback") (default "pause")
|
||||||
--update-max-failure-ratio float Failure rate to tolerate during an update
|
--update-max-failure-ratio float Failure rate to tolerate during an update
|
||||||
--update-monitor duration Duration after each task update to monitor for failure (ns|us|ms|s|m|h) (default 0s)
|
--update-monitor duration Duration after each task update to monitor for failure (ns|us|ms|s|m|h)
|
||||||
--update-parallelism uint Maximum number of tasks updated simultaneously (0 to update all at once) (default 1)
|
--update-parallelism uint Maximum number of tasks updated simultaneously (0 to update all at once) (default 1)
|
||||||
-u, --user string Username or UID (format: <name|uid>[:<group|gid>])
|
-u, --user string Username or UID (format: <name|uid>[:<group|gid>])
|
||||||
--with-registry-auth Send registry authentication details to swarm agents
|
--with-registry-auth Send registry authentication details to swarm agents
|
||||||
|
|
|
@ -84,7 +84,7 @@ Options:
|
||||||
--update-delay duration Delay between updates (ns|us|ms|s|m|h) (default 0s)
|
--update-delay duration Delay between updates (ns|us|ms|s|m|h) (default 0s)
|
||||||
--update-failure-action string Action on update failure ("pause"|"continue"|"rollback") (default "pause")
|
--update-failure-action string Action on update failure ("pause"|"continue"|"rollback") (default "pause")
|
||||||
--update-max-failure-ratio float Failure rate to tolerate during an update
|
--update-max-failure-ratio float Failure rate to tolerate during an update
|
||||||
--update-monitor duration Duration after each task update to monitor for failure (ns|us|ms|s|m|h) (default 0s)
|
--update-monitor duration Duration after each task update to monitor for failure (ns|us|ms|s|m|h)
|
||||||
--update-parallelism uint Maximum number of tasks updated simultaneously (0 to update all at once) (default 1)
|
--update-parallelism uint Maximum number of tasks updated simultaneously (0 to update all at once) (default 1)
|
||||||
-u, --user string Username or UID (format: <name|uid>[:<group|gid>])
|
-u, --user string Username or UID (format: <name|uid>[:<group|gid>])
|
||||||
--with-registry-auth Send registry authentication details to swarm agents
|
--with-registry-auth Send registry authentication details to swarm agents
|
||||||
|
|
Loading…
Reference in a new issue