Skip to content

Commit

Permalink
e2e: remove 1.15 based test enablement in cephfs
Browse files Browse the repository at this point in the history
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 <hchiramm@redhat.com>
  • Loading branch information
humblec authored and mergify-bot committed Nov 17, 2021
1 parent 55edb2f commit a50ab66
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions e2e/cephfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
})

Expand Down

0 comments on commit a50ab66

Please sign in to comment.