mirror of https://github.com/docker/cli.git
Clarify usage of --force when used on a swarm manager
Fixes #26125 Signed-off-by: Misty Stanley-Jones <misty@docker.com>
This commit is contained in:
parent
685613f6c9
commit
bfbdb15f55
|
@ -19,7 +19,7 @@ func newLeaveCommand(dockerCli *command.DockerCli) *cobra.Command {
|
||||||
|
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
Use: "leave [OPTIONS]",
|
Use: "leave [OPTIONS]",
|
||||||
Short: "Leave a swarm",
|
Short: "Leave the swarm (workers only)",
|
||||||
Args: cli.NoArgs,
|
Args: cli.NoArgs,
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
return runLeave(dockerCli, opts)
|
return runLeave(dockerCli, opts)
|
||||||
|
@ -27,7 +27,7 @@ func newLeaveCommand(dockerCli *command.DockerCli) *cobra.Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
flags := cmd.Flags()
|
flags := cmd.Flags()
|
||||||
flags.BoolVar(&opts.force, "force", false, "Force leave ignoring warnings.")
|
flags.BoolVar(&opts.force, "force", false, "Force this node to leave the swarm, ignoring warnings")
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue