diff --git a/cmd/check.go b/cmd/check.go index e06aaa473..9c561cfd8 100644 --- a/cmd/check.go +++ b/cmd/check.go @@ -6,7 +6,7 @@ import ( var checkCmd = &cobra.Command{ Use: "check", - Short: "Check the Kubeshark installation for potential problems", + Short: "Check the Kubeshark resources for potential problems", RunE: func(cmd *cobra.Command, args []string) error { runKubesharkCheck() return nil diff --git a/cmd/config.go b/cmd/config.go index 6a54b9628..77dcacabc 100644 --- a/cmd/config.go +++ b/cmd/config.go @@ -13,7 +13,7 @@ import ( var configCmd = &cobra.Command{ Use: "config", - Short: "Generate config with default values", + Short: "Generate Kubeshark config with default values", RunE: func(cmd *cobra.Command, args []string) error { configWithDefaults, err := config.GetConfigWithDefaults() if err != nil { diff --git a/cmd/logs.go b/cmd/logs.go index 54a567130..ee09f6eee 100644 --- a/cmd/logs.go +++ b/cmd/logs.go @@ -14,7 +14,7 @@ import ( var logsCmd = &cobra.Command{ Use: "logs", - Short: "Create a zip file with logs for Github issue or troubleshoot", + Short: "Create a ZIP file with logs for GitHub issues or troubleshooting", RunE: func(cmd *cobra.Command, args []string) error { kubernetesProvider, err := getKubernetesProviderForCli() if err != nil {