2017-12-04 06:30:39 -05:00
|
|
|
package stack
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/docker/cli/cli"
|
|
|
|
"github.com/docker/cli/cli/command"
|
|
|
|
"github.com/docker/cli/cli/command/stack/kubernetes"
|
|
|
|
"github.com/docker/cli/cli/command/stack/options"
|
|
|
|
"github.com/docker/cli/cli/command/stack/swarm"
|
|
|
|
cliopts "github.com/docker/cli/opts"
|
|
|
|
"github.com/spf13/cobra"
|
2019-01-14 12:00:14 -05:00
|
|
|
"github.com/spf13/pflag"
|
2017-12-04 06:30:39 -05:00
|
|
|
)
|
|
|
|
|
2018-06-20 08:48:50 -04:00
|
|
|
func newServicesCommand(dockerCli command.Cli, common *commonOptions) *cobra.Command {
|
2017-12-04 06:30:39 -05:00
|
|
|
opts := options.Services{Filter: cliopts.NewFilterOpt()}
|
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "services [OPTIONS] STACK",
|
|
|
|
Short: "List the services in the stack",
|
|
|
|
Args: cli.ExactArgs(1),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
opts.Namespace = args[0]
|
2018-06-26 08:07:26 -04:00
|
|
|
if err := validateStackName(opts.Namespace); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-01-14 12:00:14 -05:00
|
|
|
return RunServices(dockerCli, cmd.Flags(), common.Orchestrator(), opts)
|
2017-12-04 06:30:39 -05:00
|
|
|
},
|
|
|
|
}
|
|
|
|
flags := cmd.Flags()
|
|
|
|
flags.BoolVarP(&opts.Quiet, "quiet", "q", false, "Only display IDs")
|
|
|
|
flags.StringVar(&opts.Format, "format", "", "Pretty-print services using a Go template")
|
|
|
|
flags.VarP(&opts.Filter, "filter", "f", "Filter output based on conditions provided")
|
2018-04-26 05:13:14 -04:00
|
|
|
kubernetes.AddNamespaceFlag(flags)
|
2017-12-04 06:30:39 -05:00
|
|
|
return cmd
|
|
|
|
}
|
2019-01-14 12:00:14 -05:00
|
|
|
|
|
|
|
// RunServices performs a stack services against the specified orchestrator
|
|
|
|
func RunServices(dockerCli command.Cli, flags *pflag.FlagSet, commonOrchestrator command.Orchestrator, opts options.Services) error {
|
|
|
|
return runOrchestratedCommand(dockerCli, flags, commonOrchestrator,
|
|
|
|
func() error { return swarm.RunServices(dockerCli, opts) },
|
|
|
|
func(kli *kubernetes.KubeCli) error { return kubernetes.RunServices(kli, opts) })
|
|
|
|
}
|