Skip to content

Commit

Permalink
Reduce e2e test parrallelism from 64 to 32 (#2019)
Browse files Browse the repository at this point in the history
One theory is that we're running too many tests
for the controller/control plane to manage at any given
point and time, and things are timing out and that's why we're getting so many flakes.
  • Loading branch information
markmandel authored Mar 9, 2021
1 parent 25def1b commit 88d423c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/e2e-image/e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ set -e
echo "installing current release"
DOCKER_RUN= make install FEATURE_GATES='"'$FEATURES'"'
echo "starting e2e test"
DOCKER_RUN= make test-e2e ARGS=-parallel=64 FEATURE_GATES='"'$FEATURES'"'
DOCKER_RUN= make test-e2e ARGS=-parallel=32 FEATURE_GATES='"'$FEATURES'"'
echo "completed e2e test"

0 comments on commit 88d423c

Please sign in to comment.