Browse Source

Merge pull request #589 from erikwilson/cleanup-command-help

Cleanup command help text
pull/591/head
Erik Wilson 5 years ago committed by GitHub
parent
commit
9ccf3cbc9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      pkg/cli/cmds/agent.go
  2. 2
      pkg/cli/cmds/server.go

4
pkg/cli/cmds/agent.go

@ -91,12 +91,12 @@ var (
}
NodeTaints = cli.StringSliceFlag{
Name: "node-taint",
Usage: "(agent) Registring kubelet with set of taints",
Usage: "(agent) Registering kubelet with set of taints",
Value: &AgentConfig.Taints,
}
NodeLabels = cli.StringSliceFlag{
Name: "node-label",
Usage: "(agent) Registring kubelet with set of labels",
Usage: "(agent) Registering kubelet with set of labels",
Value: &AgentConfig.Labels,
}
)

2
pkg/cli/cmds/server.go

@ -147,7 +147,7 @@ func NewServerCommand(action func(*cli.Context) error) cli.Command {
},
cli.StringFlag{
Name: "cert-storage-backend",
Usage: "Specify storage type for storing certificate information",
Usage: "(experimental) Specify storage type for storing certificate information",
Destination: &ServerConfig.CertStorageBackend,
},
cli.StringFlag{

Loading…
Cancel
Save