Skip to content

Commit

Permalink
ci: Add jitter for conformance testing (#4646)
Browse files Browse the repository at this point in the history
  • Loading branch information
engedaam authored Sep 18, 2023
1 parent 18a42ce commit 007e5da
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/e2e-conformance-trigger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
needs: [resolve]
if: needs.resolve.outputs.SHOULD_RUN == 'true'
strategy:
max-parallel: 1
fail-fast: false
matrix:
k8s_version: [ "1.23", "1.24", "1.25", "1.26", "1.27" ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
- name: add jitter on cluster creation
run: |
# Creating jitter so that we can stagger cluster creation to avoid throttling
sleep $(( $RANDOM % 60 + 1 ))
sleep $(( $RANDOM % 300 + 1 ))
- name: generate cluster name
run: |
CLUSTER_NAME=$(echo ${{ inputs.suite }}-$RANDOM$RANDOM | awk '{print tolower($0)}')
Expand Down

0 comments on commit 007e5da

Please sign in to comment.