mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
12a00e6017
As described in our ROADMAP.md, introduce new Swarm management commands to call to the corresponding API endpoints. This PR is fully backward compatible (joining a Swarm is an optional feature of the Engine, and existing commands are not impacted). Signed-off-by: Daniel Nephin <dnephin@docker.com> Signed-off-by: Victor Vieux <vieux@docker.com> Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
65 lines
1.7 KiB
Go
65 lines
1.7 KiB
Go
package service
|
|
|
|
import (
|
|
"golang.org/x/net/context"
|
|
|
|
"github.com/docker/docker/api/client"
|
|
"github.com/docker/docker/api/client/idresolver"
|
|
"github.com/docker/docker/api/client/task"
|
|
"github.com/docker/docker/cli"
|
|
"github.com/docker/docker/opts"
|
|
"github.com/docker/engine-api/types"
|
|
"github.com/docker/engine-api/types/swarm"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
type tasksOptions struct {
|
|
serviceID string
|
|
all bool
|
|
noResolve bool
|
|
filter opts.FilterOpt
|
|
}
|
|
|
|
func newTasksCommand(dockerCli *client.DockerCli) *cobra.Command {
|
|
opts := tasksOptions{filter: opts.NewFilterOpt()}
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "tasks [OPTIONS] SERVICE",
|
|
Short: "List the tasks of a service",
|
|
Args: cli.ExactArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
opts.serviceID = args[0]
|
|
return runTasks(dockerCli, opts)
|
|
},
|
|
}
|
|
flags := cmd.Flags()
|
|
flags.BoolVarP(&opts.all, "all", "a", false, "Display all tasks")
|
|
flags.BoolVarP(&opts.noResolve, "no-resolve", "n", false, "Do not map IDs to Names")
|
|
flags.VarP(&opts.filter, "filter", "f", "Filter output based on conditions provided")
|
|
|
|
return cmd
|
|
}
|
|
|
|
func runTasks(dockerCli *client.DockerCli, opts tasksOptions) error {
|
|
client := dockerCli.Client()
|
|
ctx := context.Background()
|
|
|
|
service, err := client.ServiceInspect(ctx, opts.serviceID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
filter := opts.filter.Value()
|
|
filter.Add("service", service.ID)
|
|
if !opts.all && !filter.Include("desired_state") {
|
|
filter.Add("desired_state", string(swarm.TaskStateRunning))
|
|
filter.Add("desired_state", string(swarm.TaskStateAccepted))
|
|
}
|
|
|
|
tasks, err := client.TaskList(ctx, types.TaskListOptions{Filter: filter})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return task.Print(dockerCli, ctx, tasks, idresolver.New(client, opts.noResolve))
|
|
}
|