From 7edd9532542aa436b3c8377841d4b576700296b1 Mon Sep 17 00:00:00 2001 From: Shubham Bajpai Date: Fri, 11 Jun 2021 18:32:06 +0530 Subject: [PATCH] fix(logs): remove label for listing cstorvolumes (#113) Signed-off-by: shubham --- cmd/migrate/executor/cstor_pool.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/migrate/executor/cstor_pool.go b/cmd/migrate/executor/cstor_pool.go index 4b38c7ec..fd73f874 100644 --- a/cmd/migrate/executor/cstor_pool.go +++ b/cmd/migrate/executor/cstor_pool.go @@ -89,8 +89,8 @@ func (m *MigrateOptions) RunCStorSPCMigrate() error { klog.Infof("Successfully migrated spc %s to cspc", m.spcName) klog.Infof("Make sure to migrate the associated PVs, "+ - "to list CStorVolumes for the PVs which are pending migration use `kubectl get cstorvolume.openebs.io -n %s -l openebs.io/storage-pool-claim=%s`, "+ + "to list CStorVolumes for the PVs which are pending migration use `kubectl get cstorvolume.openebs.io -n %s`, "+ "and to list CStorVolumes for the migrated/CSI PVs use `kubectl get cstorvolume.cstor.openebs.io -n %s`", - m.openebsNamespace, m.spcName, m.openebsNamespace) + m.openebsNamespace, m.openebsNamespace) return nil }