mirror of https://github.com/docker/cli.git
38 lines
1.0 KiB
Go
38 lines
1.0 KiB
Go
package node
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/docker/cli/cli"
|
|
"github.com/docker/cli/cli/command"
|
|
"github.com/docker/docker/api/types/swarm"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func newDemoteCommand(dockerCli command.Cli) *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(cmd.Context(), dockerCli, args)
|
|
},
|
|
}
|
|
}
|
|
|
|
func runDemote(ctx context.Context, dockerCli command.Cli, nodes []string) error {
|
|
demote := func(node *swarm.Node) error {
|
|
if node.Spec.Role == swarm.NodeRoleWorker {
|
|
fmt.Fprintf(dockerCli.Out(), "Node %s is already a worker.\n", node.ID)
|
|
return errNoRoleChange
|
|
}
|
|
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(ctx, dockerCli, nodes, demote, success)
|
|
}
|