Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: reduce gh actions job resource contention for istio e2e #2073

Merged
merged 1 commit into from
Dec 9, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ jobs:
KONG_LICENSE_DATA: ${{ secrets.KONG_LICENSE_DATA }}
KONG_CLUSTER_VERSION: ${{ matrix.kubernetes_version }}
ISTIO_VERSION: ${{ matrix.istio_version }}
NCPU: 2 # it was found that github actions (specifically) did not seem to perform well when spawning
# multiple kind clusters within a single job so this is hardcoded to 2 to ensure a limit of 2 clusters at any one point.
NCPU: 1 # it was found that github actions (specifically) did not seem to perform well when spawning
# multiple kind clusters within a single job, so only 1 is allowed at a time.