-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathcmd.go
More file actions
39 lines (35 loc) · 993 Bytes
/
cmd.go
File metadata and controls
39 lines (35 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package swarm
import (
"github.com/spf13/cobra"
"github.com/docker/cli/cli"
"github.com/docker/cli/cli/command"
"github.com/docker/cli/internal/commands"
)
func init() {
commands.Register(newSwarmCommand)
}
// 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)
},
DisableFlagsInUseLine: true,
}
cmd.AddCommand(
newInitCommand(dockerCLI),
newJoinCommand(dockerCLI),
newJoinTokenCommand(dockerCLI),
newUnlockKeyCommand(dockerCLI),
newUpdateCommand(dockerCLI),
newLeaveCommand(dockerCLI),
newUnlockCommand(dockerCLI),
newCACommand(dockerCLI),
)
return cmd
}