Merge pull request #43684 from xilabao/patch-10

Automatic merge from submit-queue

fix typo in kubeadm join -h

```
Flags:
      --config string                Path to kubeadm config file
      --discovery-file string        A file or url from which to load cluster information
      --discovery-token string       A token used to validate cluster information fetched from the master
      --skip-preflight-checks        skip preflight checks normally run before modifying the system
      --tls-bootstrap-token string   A token used for TLS bootstrapping
      --token string                 Use this token for both discovery-token and tls-bootstrap-token
```
This commit is contained in:
Kubernetes Submit Queue 2017-04-01 07:02:42 -07:00 committed by GitHub
commit 756539f4fc

View File

@ -122,7 +122,7 @@ func NewCmdJoin(out io.Writer) *cobra.Command {
cmd.PersistentFlags().BoolVar(
&skipPreFlight, "skip-preflight-checks", false,
"skip preflight checks normally run before modifying the system",
"Skip preflight checks normally run before modifying the system",
)
return cmd