mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
12a00e6017
As described in our ROADMAP.md, introduce new Swarm management commands to call to the corresponding API endpoints. This PR is fully backward compatible (joining a Swarm is an optional feature of the Engine, and existing commands are not impacted). Signed-off-by: Daniel Nephin <dnephin@docker.com> Signed-off-by: Victor Vieux <vieux@docker.com> Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
40 lines
924 B
Go
40 lines
924 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"
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
func newDemoteCommand(dockerCli *client.DockerCli) *cobra.Command {
|
|
var flags *pflag.FlagSet
|
|
|
|
cmd := &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, flags, args)
|
|
},
|
|
}
|
|
|
|
flags = cmd.Flags()
|
|
return cmd
|
|
}
|
|
|
|
func runDemote(dockerCli *client.DockerCli, flags *pflag.FlagSet, args []string) error {
|
|
for _, id := range args {
|
|
if err := runUpdate(dockerCli, id, func(node *swarm.Node) {
|
|
node.Spec.Role = swarm.NodeRoleWorker
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
fmt.Println(id, "attempting to demote a manager in the swarm.")
|
|
}
|
|
|
|
return nil
|
|
}
|