From cd80b4cb2323f26cc118db348d3b0e5cfd395dca Mon Sep 17 00:00:00 2001 From: Humble Chirammal Date: Wed, 3 Nov 2021 17:38:32 +0530 Subject: [PATCH] e2e: remove 1.15 based test enablement in cephfs Considering we are far out of these release and only care about kubernetes releases from v1.20, there is no need to have this version check in place for the tests. Signed-off-by: Humble Chirammal --- e2e/cephfs.go | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/e2e/cephfs.go b/e2e/cephfs.go index 091d8c23453..eb1d553b6aa 100644 --- a/e2e/cephfs.go +++ b/e2e/cephfs.go @@ -602,12 +602,9 @@ var _ = Describe("cephfs", func() { }) By("Resize PVC and check application directory size", func() { - // Resize 0.3.0 is only supported from v1.15+ - if k8sVersionGreaterEquals(f.ClientSet, 1, 15) { - err := resizePVCAndValidateSize(pvcPath, appPath, f) - if err != nil { - e2elog.Failf("failed to resize PVC with error %v", err) - } + err := resizePVCAndValidateSize(pvcPath, appPath, f) + if err != nil { + e2elog.Failf("failed to resize PVC with error %v", err) } })