diff --git a/pkg/kudoctl/cmd/install.go b/pkg/kudoctl/cmd/install.go index 0ec2e376e..35bcb516a 100644 --- a/pkg/kudoctl/cmd/install.go +++ b/pkg/kudoctl/cmd/install.go @@ -16,7 +16,7 @@ var ( # Install the most recent Flink package to your cluster. kubectl kudo install flink - + *Note*: should you have a local "flink" folder in the current directory it will take precedence over the remote repository. # Install framework from a local filesystem @@ -100,7 +100,7 @@ func newInstallCmd() *cobra.Command { installCmd.Flags().StringVar(&options.InstanceName, "instance", "", "The instance name. (default to Operator name)") installCmd.Flags().StringVar(&options.Namespace, "namespace", "default", "The namespace used for the package installation. (default \"default\"") installCmd.Flags().StringArrayVarP(¶meters, "parameter", "p", nil, "The parameter name and value separated by '='") - installCmd.Flags().StringVar(&options.PackageVersion, "package-version", "", "A specific package version on the official GitHub repo. (default to the most recent)") + installCmd.Flags().StringVarP(&options.PackageVersion, "version", "v", "", "A specific package version on the official GitHub repo. (default to the most recent)") installCmd.Flags().BoolVar(&options.SkipInstance, "skip-instance", false, "If set, install will install the Operator and OperatorVersion, but not an instance. (default \"false\")") const usageFmt = "Usage:\n %s\n\nFlags:\n%s"