Unverified Commit 9ccf3cbc authored by Erik Wilson's avatar Erik Wilson Committed by GitHub

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

Cleanup command help text
parents 7c425f33 4b540f8d
...@@ -91,12 +91,12 @@ var ( ...@@ -91,12 +91,12 @@ var (
} }
NodeTaints = cli.StringSliceFlag{ NodeTaints = cli.StringSliceFlag{
Name: "node-taint", Name: "node-taint",
Usage: "(agent) Registring kubelet with set of taints", Usage: "(agent) Registering kubelet with set of taints",
Value: &AgentConfig.Taints, Value: &AgentConfig.Taints,
} }
NodeLabels = cli.StringSliceFlag{ NodeLabels = cli.StringSliceFlag{
Name: "node-label", Name: "node-label",
Usage: "(agent) Registring kubelet with set of labels", Usage: "(agent) Registering kubelet with set of labels",
Value: &AgentConfig.Labels, Value: &AgentConfig.Labels,
} }
) )
......
...@@ -147,7 +147,7 @@ func NewServerCommand(action func(*cli.Context) error) cli.Command { ...@@ -147,7 +147,7 @@ func NewServerCommand(action func(*cli.Context) error) cli.Command {
}, },
cli.StringFlag{ cli.StringFlag{
Name: "cert-storage-backend", Name: "cert-storage-backend",
Usage: "Specify storage type for storing certificate information", Usage: "(experimental) Specify storage type for storing certificate information",
Destination: &ServerConfig.CertStorageBackend, Destination: &ServerConfig.CertStorageBackend,
}, },
cli.StringFlag{ cli.StringFlag{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment