From 671c73a0704e4f13851f3c427cb22799f0b253e1 Mon Sep 17 00:00:00 2001 From: 96RadhikaJadhav Date: Tue, 2 Feb 2021 14:20:11 +0530 Subject: [PATCH] Fixed wrong chart name --- pkg/commands/system.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/commands/system.go b/pkg/commands/system.go index cdc22d143..5f3df940a 100644 --- a/pkg/commands/system.go +++ b/pkg/commands/system.go @@ -94,7 +94,7 @@ func (i *infoCmd) run(ioStreams cmdutil.IOStreams) error { return fmt.Errorf("fail to get cluster chartPath: %w", err) } ioStreams.Info("Versions:") - ioStreams.Infof("oam-kubernetes-runtime: %s \n", clusterVersion) + ioStreams.Infof("kubevela: %s \n", clusterVersion) // TODO(wonderflow): we should print all helm charts installed by vela, including plugins return nil @@ -282,7 +282,7 @@ func GetOAMReleaseVersion(ns string) (string, error) { return result.Chart.AppVersion(), nil } } - return "", errors.New("oam-kubernetes-runtime not found in your kubernetes cluster, try `vela install` to install") + return "", errors.New("kubevela not found in your kubernetes cluster, try `vela install` to install") } // PrintTrackVelaRuntimeStatus prints status of installing vela-core runtime