This replaces the visitAll recursive function with a test that verifies that the option is set for all commands and subcommands, so that it doesn't have to be modified at runtime. We currently still have to loop over all functions for the setValidateArgs call, but that can be looked at separately. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
39 lines
1.1 KiB
Go
39 lines
1.1 KiB
Go
package node
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/docker/cli/cli"
|
|
"github.com/docker/cli/cli/command"
|
|
"github.com/moby/moby/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)
|
|
},
|
|
ValidArgsFunction: completeNodeNames(dockerCLI),
|
|
DisableFlagsInUseLine: true,
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|
|
return updateNodes(ctx, dockerCLI.Client(), nodes, demote, func(nodeID string) {
|
|
_, _ = fmt.Fprintf(dockerCLI.Out(), "Manager %s demoted in the swarm.\n", nodeID)
|
|
})
|
|
}
|