mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
2cc5bd33ee
Implement the proposal from https://github.com/docker/docker/issues/24430#issuecomment-233100121 Removes acceptance policy and secret in favor of an automatically generated join token that combines the secret, CA hash, and manager/worker role into a single opaque string. Adds a docker swarm join-token subcommand to inspect and rotate the tokens. Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
111 lines
2.3 KiB
Go
111 lines
2.3 KiB
Go
package node
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"text/tabwriter"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
"github.com/docker/docker/api/client"
|
|
"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"
|
|
)
|
|
|
|
const (
|
|
listItemFmt = "%s\t%s\t%s\t%s\t%s\n"
|
|
)
|
|
|
|
type listOptions struct {
|
|
quiet bool
|
|
filter opts.FilterOpt
|
|
}
|
|
|
|
func newListCommand(dockerCli *client.DockerCli) *cobra.Command {
|
|
opts := listOptions{filter: opts.NewFilterOpt()}
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "ls [OPTIONS]",
|
|
Aliases: []string{"list"},
|
|
Short: "List nodes in the swarm",
|
|
Args: cli.NoArgs,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return runList(dockerCli, opts)
|
|
},
|
|
}
|
|
flags := cmd.Flags()
|
|
flags.BoolVarP(&opts.quiet, "quiet", "q", false, "Only display IDs")
|
|
flags.VarP(&opts.filter, "filter", "f", "Filter output based on conditions provided")
|
|
|
|
return cmd
|
|
}
|
|
|
|
func runList(dockerCli *client.DockerCli, opts listOptions) error {
|
|
client := dockerCli.Client()
|
|
ctx := context.Background()
|
|
|
|
nodes, err := client.NodeList(
|
|
ctx,
|
|
types.NodeListOptions{Filter: opts.filter.Value()})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
info, err := client.Info(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
out := dockerCli.Out()
|
|
if opts.quiet {
|
|
printQuiet(out, nodes)
|
|
} else {
|
|
printTable(out, nodes, info)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func printTable(out io.Writer, nodes []swarm.Node, info types.Info) {
|
|
writer := tabwriter.NewWriter(out, 0, 4, 2, ' ', 0)
|
|
|
|
// Ignore flushing errors
|
|
defer writer.Flush()
|
|
|
|
fmt.Fprintf(writer, listItemFmt, "ID", "HOSTNAME", "STATUS", "AVAILABILITY", "MANAGER STATUS")
|
|
for _, node := range nodes {
|
|
name := node.Description.Hostname
|
|
availability := string(node.Spec.Availability)
|
|
|
|
reachability := ""
|
|
if node.ManagerStatus != nil {
|
|
if node.ManagerStatus.Leader {
|
|
reachability = "Leader"
|
|
} else {
|
|
reachability = string(node.ManagerStatus.Reachability)
|
|
}
|
|
}
|
|
|
|
ID := node.ID
|
|
if node.ID == info.Swarm.NodeID {
|
|
ID = ID + " *"
|
|
}
|
|
|
|
fmt.Fprintf(
|
|
writer,
|
|
listItemFmt,
|
|
ID,
|
|
name,
|
|
client.PrettyPrint(string(node.Status.State)),
|
|
client.PrettyPrint(availability),
|
|
client.PrettyPrint(reachability))
|
|
}
|
|
}
|
|
|
|
func printQuiet(out io.Writer, nodes []swarm.Node) {
|
|
for _, node := range nodes {
|
|
fmt.Fprintln(out, node.ID)
|
|
}
|
|
}
|