Skip to content

Commit 7f78048

Browse files
authored
Merge pull request kubernetes#90781 from msau42/increase-timeout
Increase timeout waiting for driver to start on nodes
2 parents b144eec + fc08f74 commit 7f78048

File tree

1 file changed

+1
-1
lines changed
  • test/e2e/storage/drivers

1 file changed

+1
-1
lines changed

test/e2e/storage/drivers/csi.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ func waitForCSIDriverRegistrationOnAllNodes(driverName string, cs clientset.Inte
530530
}
531531

532532
func waitForCSIDriverRegistrationOnNode(nodeName string, driverName string, cs clientset.Interface) error {
533-
const csiNodeRegisterTimeout = 1 * time.Minute
533+
const csiNodeRegisterTimeout = 5 * time.Minute
534534

535535
waitErr := wait.PollImmediate(10*time.Second, csiNodeRegisterTimeout, func() (bool, error) {
536536
csiNode, err := cs.StorageV1().CSINodes().Get(context.TODO(), nodeName, metav1.GetOptions{})

0 commit comments

Comments
 (0)