2016-06-13 22:56:23 -04:00
|
|
|
package swarm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
|
|
|
"github.com/docker/docker/cli"
|
2016-09-08 13:11:39 -04:00
|
|
|
"github.com/docker/docker/cli/command"
|
2016-06-13 22:56:23 -04:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
type leaveOptions struct {
|
|
|
|
force bool
|
|
|
|
}
|
|
|
|
|
2016-12-25 16:23:35 -05:00
|
|
|
func newLeaveCommand(dockerCli command.Cli) *cobra.Command {
|
2016-06-13 22:56:23 -04:00
|
|
|
opts := leaveOptions{}
|
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
2016-07-16 10:44:10 -04:00
|
|
|
Use: "leave [OPTIONS]",
|
2016-12-16 09:10:20 -05:00
|
|
|
Short: "Leave the swarm",
|
2016-06-13 22:56:23 -04:00
|
|
|
Args: cli.NoArgs,
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
return runLeave(dockerCli, opts)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
flags := cmd.Flags()
|
2016-11-09 01:22:06 -05:00
|
|
|
flags.BoolVarP(&opts.force, "force", "f", false, "Force this node to leave the swarm, ignoring warnings")
|
2016-06-13 22:56:23 -04:00
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2016-12-25 16:23:35 -05:00
|
|
|
func runLeave(dockerCli command.Cli, opts leaveOptions) error {
|
2016-06-13 22:56:23 -04:00
|
|
|
client := dockerCli.Client()
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
if err := client.SwarmLeave(ctx, opts.force); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-06-17 11:19:51 -04:00
|
|
|
fmt.Fprintln(dockerCli.Out(), "Node left the swarm.")
|
2016-06-13 22:56:23 -04:00
|
|
|
return nil
|
|
|
|
}
|