2017-10-17 11:28:51 +00:00
|
|
|
package get
|
2017-02-24 23:54:49 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/api"
|
2017-10-17 06:37:16 +00:00
|
|
|
"github.com/hashicorp/consul/command/flags"
|
|
|
|
"github.com/mitchellh/cli"
|
2017-02-24 23:54:49 +00:00
|
|
|
)
|
|
|
|
|
2017-10-17 06:37:16 +00:00
|
|
|
func New(ui cli.Ui) *cmd {
|
|
|
|
c := &cmd{UI: ui}
|
|
|
|
c.init()
|
|
|
|
return c
|
2017-02-24 23:54:49 +00:00
|
|
|
}
|
|
|
|
|
2017-10-17 06:37:16 +00:00
|
|
|
type cmd struct {
|
|
|
|
UI cli.Ui
|
|
|
|
flags *flag.FlagSet
|
|
|
|
http *flags.HTTPFlags
|
2017-10-17 13:44:20 +00:00
|
|
|
help string
|
2017-10-17 06:37:16 +00:00
|
|
|
}
|
2017-02-24 23:54:49 +00:00
|
|
|
|
2017-10-17 06:37:16 +00:00
|
|
|
func (c *cmd) init() {
|
|
|
|
c.flags = flag.NewFlagSet("", flag.ContinueOnError)
|
|
|
|
c.http = &flags.HTTPFlags{}
|
|
|
|
flags.Merge(c.flags, c.http.ClientFlags())
|
|
|
|
flags.Merge(c.flags, c.http.ServerFlags())
|
2017-10-17 22:00:01 +00:00
|
|
|
c.help = flags.Usage(help, c.flags)
|
2017-10-17 06:37:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *cmd) Run(args []string) int {
|
|
|
|
if err := c.flags.Parse(args); err != nil {
|
2017-02-24 23:54:49 +00:00
|
|
|
if err == flag.ErrHelp {
|
|
|
|
return 0
|
|
|
|
}
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Failed to parse args: %v", err))
|
2017-02-24 23:54:49 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set up a client.
|
2017-10-17 06:37:16 +00:00
|
|
|
client, err := c.http.APIClient()
|
2017-02-24 23:54:49 +00:00
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error initializing client: %s", err))
|
2017-02-24 23:54:49 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch the current configuration.
|
|
|
|
opts := &api.QueryOptions{
|
2017-10-17 06:37:16 +00:00
|
|
|
AllowStale: c.http.Stale(),
|
2017-02-24 23:54:49 +00:00
|
|
|
}
|
|
|
|
config, err := client.Operator().AutopilotGetConfiguration(opts)
|
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error querying Autopilot configuration: %s", err))
|
2017-02-24 23:54:49 +00:00
|
|
|
return 1
|
|
|
|
}
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Output(fmt.Sprintf("CleanupDeadServers = %v", config.CleanupDeadServers))
|
|
|
|
c.UI.Output(fmt.Sprintf("LastContactThreshold = %v", config.LastContactThreshold.String()))
|
|
|
|
c.UI.Output(fmt.Sprintf("MaxTrailingLogs = %v", config.MaxTrailingLogs))
|
|
|
|
c.UI.Output(fmt.Sprintf("ServerStabilizationTime = %v", config.ServerStabilizationTime.String()))
|
|
|
|
c.UI.Output(fmt.Sprintf("RedundancyZoneTag = %q", config.RedundancyZoneTag))
|
|
|
|
c.UI.Output(fmt.Sprintf("DisableUpgradeMigration = %v", config.DisableUpgradeMigration))
|
2017-07-18 21:01:04 +00:00
|
|
|
c.UI.Output(fmt.Sprintf("UpgradeVersionTag = %q", config.UpgradeVersionTag))
|
2017-02-24 23:54:49 +00:00
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
2017-10-17 06:37:16 +00:00
|
|
|
|
2017-10-17 13:44:20 +00:00
|
|
|
func (c *cmd) Synopsis() string {
|
|
|
|
return synopsis
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *cmd) Help() string {
|
|
|
|
return c.help
|
|
|
|
}
|
|
|
|
|
|
|
|
const synopsis = "Display the current Autopilot configuration"
|
|
|
|
const help = `
|
|
|
|
Usage: consul operator autopilot get-config [options]
|
2017-10-17 06:37:16 +00:00
|
|
|
|
2017-10-17 13:44:20 +00:00
|
|
|
Displays the current Autopilot configuration.
|
|
|
|
`
|