This patch deprecates exported swarm commands and moves the implementation
details to an unexported function.
Commands that are affected include:
- swarm.NewSwarmCommand
Signed-off-by: Alano Terblanche <18033717+Benehiko@users.noreply.github.com>
(cherry picked from commit bf39340294)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
package swarm
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/docker/cli/cli"
|
|
"github.com/docker/cli/cli/command"
|
|
)
|
|
|
|
// NewSwarmCommand returns a cobra command for `swarm` subcommands
|
|
//
|
|
// Deprecated: Do not import commands directly. They will be removed in a future release.
|
|
func NewSwarmCommand(dockerCLI command.Cli) *cobra.Command {
|
|
return newSwarmCommand(dockerCLI)
|
|
}
|
|
|
|
// newSwarmCommand returns a cobra command for `swarm` subcommands
|
|
func newSwarmCommand(dockerCLI command.Cli) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "swarm",
|
|
Short: "Manage Swarm",
|
|
Args: cli.NoArgs,
|
|
RunE: command.ShowHelp(dockerCLI.Err()),
|
|
Annotations: map[string]string{
|
|
"version": "1.24",
|
|
"swarm": "", // swarm command itself does not require swarm to be enabled (so swarm init and join is always available on API 1.24 and up)
|
|
},
|
|
}
|
|
cmd.AddCommand(
|
|
newInitCommand(dockerCLI),
|
|
newJoinCommand(dockerCLI),
|
|
newJoinTokenCommand(dockerCLI),
|
|
newUnlockKeyCommand(dockerCLI),
|
|
newUpdateCommand(dockerCLI),
|
|
newLeaveCommand(dockerCLI),
|
|
newUnlockCommand(dockerCLI),
|
|
newCACommand(dockerCLI),
|
|
)
|
|
return cmd
|
|
}
|