diff --git a/cli/deploy.go b/cli/deploy.go index 340145f7..9759274b 100644 --- a/cli/deploy.go +++ b/cli/deploy.go @@ -52,7 +52,7 @@ import ( // particular one contains all the common flags for the `deploy` subcommand // which all frontends can use. type DeployArgs struct { - Seeds []string `arg:"--seeds,env:MGMT_SEEDS" help:"default etc client endpoint"` + Seeds []string `arg:"--seeds,env:MGMT_SEEDS" help:"default etcd client endpoints"` Noop bool `arg:"--noop" help:"globally force all resources into no-op mode"` Sema int `arg:"--sema" default:"-1" help:"globally add a semaphore to all resources with this lock count"` NoGit bool `arg:"--no-git" help:"don't look at git commit id for safe deploys"` diff --git a/lib/main.go b/lib/main.go index 2ec3235b..f8d411e5 100644 --- a/lib/main.go +++ b/lib/main.go @@ -144,9 +144,9 @@ type Config struct { // this many seconds. Use 0 to disable this. MaxRuntime uint `arg:"--max-runtime,env:MGMT_MAX_RUNTIME" help:"exit after a maximum of approximately this many seconds"` - // Seeds are the list of default etc client endpoints. If empty, it will - // startup a new server. - Seeds []string `arg:"--seeds,env:MGMT_SEEDS" help:"default etc client endpoint"` + // Seeds are the list of default etcd client endpoints. If empty, it + // will startup a new server. + Seeds []string `arg:"--seeds,env:MGMT_SEEDS" help:"default etcd client endpoints"` // ClientURLs are a list of URLs to listen on for client traffic. Ports // 2379 and 4001 are common.