diff --git a/test/e2e/storage/drivers/csi.go b/test/e2e/storage/drivers/csi.go index c387c7e55e164..6a468463f5c02 100644 --- a/test/e2e/storage/drivers/csi.go +++ b/test/e2e/storage/drivers/csi.go @@ -40,7 +40,6 @@ import ( "encoding/json" "errors" "fmt" - "regexp" "strconv" "strings" "sync" @@ -245,14 +244,6 @@ func (h *hostpathCSIDriver) PrepareTest(f *framework.Framework) (*storageframewo NodeName: node.Name, } - // Disable volume lifecycle checks due to issue #103651 for the one - // test that it breaks. - // TODO: enable this check once issue is resolved for csi-host-path driver - // (https://github.com/kubernetes/kubernetes/pull/104858). - if regexp.MustCompile("should unmount if pod is.*deleted while kubelet is down").MatchString(ginkgo.CurrentGinkgoTestDescription().FullTestText) { - o.DriverContainerArguments = append(o.DriverContainerArguments, "--check-volume-lifecycle=false") - } - cleanup, err := utils.CreateFromManifests(config.Framework, driverNamespace, func(item interface{}) error { if err := utils.PatchCSIDeployment(config.Framework, o, item); err != nil { return err