1234567891011121314151617181920212223242526272829303132 |
- package node
- import (
- "fmt"
- "github.com/docker/docker/api/client"
- "github.com/docker/docker/cli"
- "github.com/docker/engine-api/types/swarm"
- "github.com/spf13/cobra"
- )
- func newDemoteCommand(dockerCli *client.DockerCli) *cobra.Command {
- return &cobra.Command{
- Use: "demote NODE [NODE...]",
- Short: "Demote one or more nodes from manager in the swarm",
- Args: cli.RequiresMinArgs(1),
- RunE: func(cmd *cobra.Command, args []string) error {
- return runDemote(dockerCli, args)
- },
- }
- }
- func runDemote(dockerCli *client.DockerCli, nodes []string) error {
- demote := func(node *swarm.Node) error {
- node.Spec.Role = swarm.NodeRoleWorker
- return nil
- }
- success := func(nodeID string) {
- fmt.Fprintf(dockerCli.Out(), "Manager %s demoted in the swarm.\n", nodeID)
- }
- return updateNodes(dockerCli, nodes, demote, success)
- }
|