From 0f08a7eb93e08a3f55f9bf07aa7232d4c3074468 Mon Sep 17 00:00:00 2001 From: Huy Mai Date: Fri, 3 Jan 2025 10:14:17 +0200 Subject: [PATCH] Set scalability test timeout to 6h As we want to test more clusters in scalability, the default 3h is not enough. For now let's set it to 6h, but the timeout could be extended even further in the future. Signed-off-by: Huy Mai --- jenkins/jobs/capm3-e2e-tests.pipeline | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/jobs/capm3-e2e-tests.pipeline b/jenkins/jobs/capm3-e2e-tests.pipeline index 3f2549d8..5c07e33a 100644 --- a/jenkins/jobs/capm3-e2e-tests.pipeline +++ b/jenkins/jobs/capm3-e2e-tests.pipeline @@ -27,7 +27,7 @@ script { } else if ( "${GINKGO_FOCUS}" == 'k8s-upgrade' ) { agent_label = "metal3ci-8c24gb-${IMAGE_OS}" TIMEOUT=14400 // 4h - } else if ( "${env.EPHEMERAL_TEST}" == 'true' ) { + } else if ( "${env.EPHEMERAL_TEST}" == 'true' || "${GINKGO_FOCUS}" == "scalability" ) { TIMEOUT=21600 // 6h agent_label = "metal3ci-8c32gb-${IMAGE_OS}" } else {