From 60e7890e232d6effbedbc5d39171d9d5981762f9 Mon Sep 17 00:00:00 2001 From: Igor Gov Date: Sun, 27 Feb 2022 10:49:30 +0200 Subject: [PATCH] Changing mizu ent helm name (#859) * Changing mizu ent helm name --- cli/cmd/install.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/cmd/install.go b/cli/cmd/install.go index ccf6e9a3a..13d2669cc 100644 --- a/cli/cmd/install.go +++ b/cli/cmd/install.go @@ -14,10 +14,10 @@ var installCmd = &cobra.Command{ logger.Log.Infof("This command has been deprecated, please use helm as described below.\n\n") logger.Log.Infof("To install stable build of Mizu on your cluster using helm, run the following command:") - logger.Log.Infof(" helm install mizu mizu --repo https://static.up9.com/mizu/helm --namespace=mizu --create-namespace\n\n") + logger.Log.Infof(" helm install mizu up9mizu --repo https://static.up9.com/mizu/helm --namespace=mizu --create-namespace\n\n") logger.Log.Infof("To install development build of Mizu on your cluster using helm, run the following command:") - logger.Log.Infof(" helm install mizu mizu --repo https://static.up9.com/mizu/helm-develop --namespace=mizu --create-namespace\n") + logger.Log.Infof(" helm install mizu up9mizu --repo https://static.up9.com/mizu/helm-develop --namespace=mizu --create-namespace\n") return nil },