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>
This commit is contained in:
		@@ -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,
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user