From 9cf64a43f5f549a798a92a65924043d4aad4c9bd Mon Sep 17 00:00:00 2001 From: Alex Haiut Date: Tue, 15 Feb 2022 17:14:37 +0200 Subject: [PATCH] modified namespace in helm command (#814) --- 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 509538d61..d0a96a0cb 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 https://static.up9.com/mizu/helm --namespace=mizu-ent --create-namespace\n\n") + logger.Log.Infof(" helm install mizu 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 https://static.up9.com/mizu/helm-develop --namespace=mizu-ent --create-namespace") + logger.Log.Infof(" helm install mizu https://static.up9.com/mizu/helm-develop --namespace=mizu --create-namespace") return nil },