From 6fdbea6e52e64d54a4bab54bada7deaa31369070 Mon Sep 17 00:00:00 2001 From: hanenMizouni Date: Fri, 18 Oct 2024 10:47:42 +0000 Subject: [PATCH] give the pod more time to attach storage and become ready Signed-off-by: hanenMizouni --- tests/e2e/dynamic_provisioning.go | 2 +- tests/e2e/testsuites/testsuites.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/dynamic_provisioning.go b/tests/e2e/dynamic_provisioning.go index 617e6253..f72a05d7 100644 --- a/tests/e2e/dynamic_provisioning.go +++ b/tests/e2e/dynamic_provisioning.go @@ -817,7 +817,7 @@ var _ = Describe("[bsu-csi-e2e] [single-az] [encryption] Dynamic Provisioning", Cmd: "mount | grep ' /mnt/test-1 ' | awk '{ print $1}' | grep '^/dev/mapper/.*_crypt$'", Volumes: []testsuites.VolumeDetails{ { - VolumeType: osccloud.VolumeTypeGP2, + VolumeType: osccloud.VolumeTypeIO1, FSType: bsucsidriver.FSTypeExt4, ClaimSize: driver.MinimumSizeForVolumeType(osccloud.VolumeTypeGP2), VolumeMount: testsuites.VolumeMountDetails{ diff --git a/tests/e2e/testsuites/testsuites.go b/tests/e2e/testsuites/testsuites.go index 70d32273..efb3816c 100644 --- a/tests/e2e/testsuites/testsuites.go +++ b/tests/e2e/testsuites/testsuites.go @@ -46,7 +46,7 @@ import ( const ( execTimeout = 10 * time.Second // Some pods can take much longer to get ready due to volume attach/detach latency. - slowPodStartTimeout = 15 * time.Minute + slowPodStartTimeout = 30 * time.Minute // Description that will printed during tests failedConditionDescription = "Error status code" )