diff --git a/e2e/pvc.go b/e2e/pvc.go index c99052ba0..332c34be8 100644 --- a/e2e/pvc.go +++ b/e2e/pvc.go @@ -69,7 +69,12 @@ func createPVCAndvalidatePV(c kubernetes.Interface, pvc *v1.PersistentVolumeClai if apierrs.IsNotFound(err) { return false, nil } - err = e2epv.WaitOnPVandPVC(c, pvc.Namespace, pv, pvc) + err = e2epv.WaitOnPVandPVC( + c, + &framework.TimeoutContext{ClaimBound: timeout, PVBound: timeout}, + pvc.Namespace, + pv, + pvc) if err != nil { return false, fmt.Errorf("failed to wait for the pv and pvc to bind: %w", err) }