diff --git a/cmd/apps/openfaas_ingress_app.go b/cmd/apps/openfaas_ingress_app.go index dae15829e..5b983a06d 100644 --- a/cmd/apps/openfaas_ingress_app.go +++ b/cmd/apps/openfaas_ingress_app.go @@ -37,10 +37,12 @@ type inputData struct { //MakeInstallOpenFaaSIngess will install a clusterissuer and request a cert from certmanager for the domain you specify func MakeInstallOpenFaaSIngress() *cobra.Command { var openfaasIngress = &cobra.Command{ - Use: "openfaas-ingress", - Short: "Install openfaas ingress with TLS", - Long: `Install openfaas ingress. Requires cert-manager 0.11.0 or higher installation in the cluster. Please set --domain to your custom domain and set --email to your email - this email is used by letsencrypt for domain expiry etc.`, - Example: ` arkade install openfaas-ingress --domain openfaas.example.com --email openfaas@example.com`, + Use: "openfaas-ingress", + Short: "Install openfaas ingress with TLS", + Long: `Install openfaas ingress. Requires cert-manager 1.0.0+ the cluster.`, + Example: ` arkade install openfaas-ingress \ + --domain openfaas.example.com \ + --email openfaas@example.com`, SilenceUsage: true, } diff --git a/cmd/get.go b/cmd/get.go index 15ef42a28..a04d65d1b 100644 --- a/cmd/get.go +++ b/cmd/get.go @@ -40,7 +40,7 @@ and provides a fast and easy alternative to a package manager.`, # Get a complete list of CLIs to download: arkade get --help`, SilenceUsage: true, - Aliases: []string{"g"}, + Aliases: []string{"g", "d", "download"}, ValidArgs: validToolOptions, } diff --git a/cmd/info.go b/cmd/info.go index 784d6376c..4b897130d 100644 --- a/cmd/info.go +++ b/cmd/info.go @@ -15,7 +15,7 @@ func MakeInfo() *cobra.Command { Use: "info", Short: "Find info about a Kubernetes app", Long: "Find info about how to use the installed Kubernetes app", - Aliases: []string{"i"}, + Aliases: []string{"f"}, Example: ` arkade info [APP] arkade info openfaas arkade info inlets-operator diff --git a/cmd/install.go b/cmd/install.go index 31d5c1280..cb453b31d 100644 --- a/cmd/install.go +++ b/cmd/install.go @@ -18,8 +18,9 @@ type ArkadeApp struct { func MakeInstall() *cobra.Command { var command = &cobra.Command{ - Use: "install", - Short: "Install Kubernetes apps from helm charts or YAML files", + Use: "install", + Short: "Install Kubernetes apps from helm charts or YAML files", + Aliases: []string{"i"}, Long: `Install Kubernetes apps from helm charts or YAML files using the "install" command. diff --git a/cmd/update.go b/cmd/update.go index 365d30373..48ca84333 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -14,6 +14,7 @@ func MakeUpdate() *cobra.Command { Use: "update", Short: "Print update instructions", Example: ` arkade update`, + Aliases: []string{"u"}, SilenceUsage: false, } command.Run = func(cmd *cobra.Command, args []string) { diff --git a/cmd/version.go b/cmd/version.go index 431911d65..1d30e1de6 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -25,6 +25,7 @@ func MakeVersion() *cobra.Command { Use: "version", Short: "Print the version", Example: ` arkade version`, + Aliases: []string{"v"}, SilenceUsage: false, } command.Run = func(cmd *cobra.Command, args []string) {