Skip to content

Commit

Permalink
Limit number of workers per profile
Browse files Browse the repository at this point in the history
We see random timeouts and creation of ceph osd blocklist  in the e2e
runner host. Check if reducing the load by limiting the number of
workers fixes the issues.

Signed-off-by: Nir Soffer <nsoffer@redhat.com>
  • Loading branch information
nirs committed Mar 9, 2024
1 parent 216ea3b commit cacab76
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on: # yamllint disable-line rule:truthy

env:
NAME_PREFIX: "rdr-"
# Avoid random failures in overloaded runner
# TODO: more testing.
MAX_WORKERS: 1

jobs:
e2e-rdr:
Expand Down Expand Up @@ -41,7 +44,7 @@ jobs:
- name: Start clusters
working-directory: test
run: |
drenv start --name-prefix ${{ env.NAME_PREFIX }} envs/regional-dr.yaml
drenv start --max-workers ${{ env.MAX_WORKERS }} --name-prefix ${{ env.NAME_PREFIX }} envs/regional-dr.yaml
cp ~/.config/drenv/${{ env.NAME_PREFIX }}rdr/config.yaml ../e2e/config.yaml
- name: Deploy ramen
Expand Down

0 comments on commit cacab76

Please sign in to comment.