From 7df8db46b9da7e2551da5789437059c3f2fef627 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20=C5=9Awi=C4=85tek?= Date: Thu, 1 Feb 2024 18:17:03 +0100 Subject: [PATCH] Set a timeout of 300 for all e2e tests We don't really lose much by having the same timeout for all test suites. It looks like we can sometimes have delays due to namespace deletion - this change should help with those. --- kuttl-test-autoscale.yaml | 2 +- kuttl-test-multi-instr.yaml | 2 +- kuttl-test-openshift.yaml | 2 +- kuttl-test-pdb.yaml | 2 +- kuttl-test.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/kuttl-test-autoscale.yaml b/kuttl-test-autoscale.yaml index 93e94af6ec..9f97b6ce4c 100644 --- a/kuttl-test-autoscale.yaml +++ b/kuttl-test-autoscale.yaml @@ -3,4 +3,4 @@ kind: TestSuite artifactsDir: ./tests/_build/artifacts/ testDirs: - ./tests/e2e-autoscale/ -timeout: 150 +timeout: 300 diff --git a/kuttl-test-multi-instr.yaml b/kuttl-test-multi-instr.yaml index 486e1057e6..62d26978c2 100644 --- a/kuttl-test-multi-instr.yaml +++ b/kuttl-test-multi-instr.yaml @@ -3,4 +3,4 @@ kind: TestSuite artifactsDir: ./tests/_build/artifacts/ testDirs: - ./tests/e2e-multi-instrumentation/ -timeout: 150 +timeout: 300 diff --git a/kuttl-test-openshift.yaml b/kuttl-test-openshift.yaml index 4185980835..24fc7da7a4 100644 --- a/kuttl-test-openshift.yaml +++ b/kuttl-test-openshift.yaml @@ -3,4 +3,4 @@ kind: TestSuite startKIND: false testDirs: - ./tests/e2e-openshift/ -timeout: 150 +timeout: 300 diff --git a/kuttl-test-pdb.yaml b/kuttl-test-pdb.yaml index 2a3c1561db..68034a0a57 100644 --- a/kuttl-test-pdb.yaml +++ b/kuttl-test-pdb.yaml @@ -3,4 +3,4 @@ kind: TestSuite artifactsDir: ./tests/_build/artifacts/ testDirs: - ./tests/e2e-pdb/ -timeout: 150 +timeout: 300 diff --git a/kuttl-test.yaml b/kuttl-test.yaml index 401a478213..99899bb10d 100644 --- a/kuttl-test.yaml +++ b/kuttl-test.yaml @@ -3,5 +3,5 @@ kind: TestSuite artifactsDir: ./tests/_build/artifacts/ testDirs: - ./tests/e2e/ -timeout: 150 +timeout: 300 parallel: 4