From 31874aa04d0a547d09205df7ef2cb4dad805cea9 Mon Sep 17 00:00:00 2001 From: Joe Sirianni Date: Wed, 17 Jul 2024 12:36:59 -0400 Subject: [PATCH] limit concurrent runs to 5 --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01297e46..832e24fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,7 @@ jobs: runs-on: ubuntu-20.04 strategy: fail-fast: false + max-parallel: 5 matrix: case: - "default" @@ -76,7 +77,7 @@ jobs: kubectl apply -f - - name: Wait For Pods - run: kubectl -n default wait --for=condition=ready pods --all --timeout=120s + run: kubectl -n default wait --for=condition=ready pods --all --timeout=180s - name: "Debug: Get status and logs" if: always()