From 3202dcb6bff3efd589f0a785749d4b3d01514f0c Mon Sep 17 00:00:00 2001 From: Harisudarsan Date: Mon, 11 Dec 2023 11:15:39 +0530 Subject: [PATCH] refactored the long description --- cmd/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/install.go b/cmd/install.go index ad77fd4b..75f41132 100644 --- a/cmd/install.go +++ b/cmd/install.go @@ -16,7 +16,7 @@ var installOptions install.Options var installCmd = &cobra.Command{ Use: "install", Short: "Install KubeArmor in a Kubernetes Cluster", - Long: `Install command installs kubearmor in the cluster. Install command checks the string passed with the env whether it is a valid environment or not. and save flag can be used to save the manifest `, + Long: `The installation command deploys Kubearmor into the cluster with the specified options. This command includes a validation step that checks whether the provided string in the "env" parameter corresponds to a valid environment. The "save" flag can be employed to persistently store the generated manifest.`, RunE: func(cmd *cobra.Command, args []string) error { if err := installOptions.Env.CheckAndSetValidEnvironmentOption(cmd.Flag("env").Value.String()); err != nil { return fmt.Errorf("error in checking environment option: %v", err)