diff --git a/cmd/helmConcept.go b/cmd/helmConcept.go index 5195ad2..898c1b9 100644 --- a/cmd/helmConcept.go +++ b/cmd/helmConcept.go @@ -30,9 +30,12 @@ var dir string // helmImportCmd represents the import command var helmConceptCmd = &cobra.Command{ - Use: "concept", - Short: "Create a concept, wrapping a helm chart from a git repo", - Example: "kable helm concept --directory sentry sentry --repoName stable --version 4.3.0", + Use: "concept", + Short: "Create a concept, wrapping a helm chart from a git repo", + Example: ` +kable helm concept --directory sentry sentry --repo stable --version 4.3.0 +kable helm concept --directory cert-manager cert-manager --repo jetstack --repoURL https://charts.jetstack.io/ --version 1.6.1 +`, Args: func(cmd *cobra.Command, args []string) error { if len(args) != 1 { return errors.New("requires exactly ONE argument") diff --git a/cmd/helmImport.go b/cmd/helmImport.go index c8c99b3..994997d 100644 --- a/cmd/helmImport.go +++ b/cmd/helmImport.go @@ -29,9 +29,12 @@ var importSubdir string // helmImportCmd represents the import command var helmImportCmd = &cobra.Command{ - Use: "import", - Short: "Import a helm chart from a helm repo into the concept", - Example: "kable helm import sentry --repoName stable --version 4.3.0", + Use: "import", + Short: "Import a helm chart from a helm repo into the concept", + Example: ` +kable helm import sentry --repo stable --version 4.3.0 +kable helm import cert-manager --repo jetstack --repoURL https://charts.jetstack.io/ --version 1.6.1 +`, Args: func(cmd *cobra.Command, args []string) error { if len(args) != 1 { return errors.New("requires exactly ONE argument")