mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
cacaeab9db
Also share mode code between update commands and use flag constants Signed-off-by: Daniel Nephin <dnephin@docker.com>
31 lines
808 B
Go
31 lines
808 B
Go
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 a node 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) {
|
|
node.Spec.Role = swarm.NodeRoleWorker
|
|
}
|
|
success := func(nodeID string) {
|
|
fmt.Fprintf(dockerCli.Out(), "Manager %s demoted in the swarm.\n", nodeID)
|
|
}
|
|
return updateNodes(dockerCli, nodes, demote, success)
|
|
}
|