diff --git a/cmd/gitops/app/bootstrap/cmd.go b/cmd/gitops/app/bootstrap/cmd.go index 8a75c85316..050b996e3a 100644 --- a/cmd/gitops/app/bootstrap/cmd.go +++ b/cmd/gitops/app/bootstrap/cmd.go @@ -13,7 +13,8 @@ import ( const ( cmdName = "bootstrap" - cmdShortDescription = `gitops bootstrap installs Weave GitOps Enterprise in simple steps: + cmdShortDescription = "Installs Weave GitOps Enterprise in simple steps" + cmdLongDescription = `Installs Weave GitOps Enterprise in simple steps: - Entitlements: check that you have valid entitlements. - Flux: check or bootstrap Flux. - Weave Gitops: check or install a supported Weave GitOps version with default configuration. @@ -47,6 +48,7 @@ func Command(opts *config.Options) *cobra.Command { cmd := &cobra.Command{ Use: cmdName, Short: cmdShortDescription, + Long: cmdLongDescription, Example: cmdExamples, RunE: getBootstrapCmdRun(opts), }