From 679109969f1ba2a8db95997c73addf33ee887fce Mon Sep 17 00:00:00 2001 From: rick Date: Tue, 1 Jun 2021 15:38:39 +0800 Subject: [PATCH] Fix the wrong version output of controller-manager Signed-off-by: rick --- cmd/controller-manager/app/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/controller-manager/app/server.go b/cmd/controller-manager/app/server.go index 954a22163..59e50cd86 100644 --- a/cmd/controller-manager/app/server.go +++ b/cmd/controller-manager/app/server.go @@ -116,7 +116,7 @@ func NewControllerManagerCommand() *cobra.Command { versionCmd := &cobra.Command{ Use: "version", - Short: "Print the version of KubeSphere ks-apiserver", + Short: "Print the version of KubeSphere controller-manager", Run: func(cmd *cobra.Command, args []string) { cmd.Println(version.Get()) },