From ab6bd3de643470c69ff6628d974123bdf5d00e99 Mon Sep 17 00:00:00 2001 From: "Jens W. Klein" Date: Fri, 29 May 2026 16:48:30 +0200 Subject: [PATCH] ci(e2e): reduce chainsaw parallelism from 3 to 2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two parallel tests (cluster-routing, per-backend-directors) intermittently fail with "context deadline exceeded" on VinylCache POSTs — the validating webhook on the single operator pod is overloaded when three heavy tests race CR creates simultaneously. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/e2e-chainsaw.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e-chainsaw.yml b/.github/workflows/e2e-chainsaw.yml index 7671d53..de20637 100644 --- a/.github/workflows/e2e-chainsaw.yml +++ b/.github/workflows/e2e-chainsaw.yml @@ -70,7 +70,7 @@ jobs: run: | chainsaw test \ --test-dir e2e/tests \ - --parallel 3 \ + --parallel 2 \ --exclude-test-regex "(ha-operator|drift-detection)" - name: Run sequential E2E tests