Merge pull request #56512 from tpepper/docs

Automatic merge from submit-queue (batch tested with PRs 56579, 55236, 56512, 56549, 56538). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.

kubectl: point info url to user guide overview

The kubectl command output suggests a user find more information at the
github source repo, eg:

	$ kubectl --help
	kubectl controls the Kubernetes cluster manager.

	Find more information at https://github.com/kubernetes/kubernetes.

But there is curated user documentation available at, eg:

	https://kubernetes.io/docs/reference/kubectl/overview/

which upon referencing yields a much better experience for a user than the
top of the source repo.

Fixes #56511

Signed-off-by: Tim Pepper <tpepper@vmware.com>

```release-note
NONE
```
pull/6/head
Kubernetes Submit Queue 2017-12-15 21:19:40 -08:00 committed by GitHub
commit 12402f3a94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -221,7 +221,8 @@ func NewKubectlCommand(f cmdutil.Factory, in io.Reader, out, err io.Writer) *cob
Long: templates.LongDesc(` Long: templates.LongDesc(`
kubectl controls the Kubernetes cluster manager. kubectl controls the Kubernetes cluster manager.
Find more information at https://github.com/kubernetes/kubernetes.`), Find more information at:
https://kubernetes.io/docs/reference/kubectl/overview/`),
Run: runHelp, Run: runHelp,
BashCompletionFunction: bashCompletionFunc, BashCompletionFunction: bashCompletionFunc,
} }