60 lines
1.4 KiB
Go
60 lines
1.4 KiB
Go
package stack
|
|
|
|
import (
|
|
"context"
|
|
"sort"
|
|
|
|
"github.com/docker/cli/cli"
|
|
"github.com/docker/cli/cli/command"
|
|
"github.com/docker/cli/cli/command/formatter"
|
|
flagsHelper "github.com/docker/cli/cli/flags"
|
|
"github.com/fvbommel/sortorder"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// listOptions holds docker stack ls options
|
|
type listOptions struct {
|
|
format string
|
|
}
|
|
|
|
func newListCommand(dockerCLI command.Cli) *cobra.Command {
|
|
opts := listOptions{}
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "ls [OPTIONS]",
|
|
Aliases: []string{"list"},
|
|
Short: "List stacks",
|
|
Args: cli.NoArgs,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return runList(cmd.Context(), dockerCLI, opts)
|
|
},
|
|
ValidArgsFunction: cobra.NoFileCompletions,
|
|
DisableFlagsInUseLine: true,
|
|
}
|
|
|
|
flags := cmd.Flags()
|
|
flags.StringVar(&opts.format, "format", "", flagsHelper.FormatHelp)
|
|
return cmd
|
|
}
|
|
|
|
// runList performs a stack list against the specified swarm cluster
|
|
func runList(ctx context.Context, dockerCLI command.Cli, opts listOptions) error {
|
|
stacks, err := getStacks(ctx, dockerCLI.Client())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
format := formatter.Format(opts.format)
|
|
if format == "" || format == formatter.TableFormatKey {
|
|
format = stackTableFormat
|
|
}
|
|
stackCtx := formatter.Context{
|
|
Output: dockerCLI.Out(),
|
|
Format: format,
|
|
}
|
|
sort.Slice(stacks, func(i, j int) bool {
|
|
return sortorder.NaturalLess(stacks[i].Name, stacks[j].Name)
|
|
})
|
|
return stackWrite(stackCtx, stacks)
|
|
}
|