-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: properly structure assertoor execution config (#1372)
- Loading branch information
Showing
4 changed files
with
85 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# This file is mix and match based upon the basic `assertoor-tests` playbooks: | ||
# - https://github.com/ethpandaops/assertoor-test/blob/master/assertoor-tests/stability-check.yaml | ||
# - https://github.com/ethpandaops/assertoor-test/blob/master/assertoor-tests/block-proposal-check.yaml | ||
# | ||
# For reference on each individual check see: https://github.com/ethpandaops/assertoor/wiki#supported-tasks-in-assertoor | ||
|
||
id: cl-stability-check | ||
name: "Check Execution Stability" | ||
timeout: 18m | ||
tasks: | ||
- name: check_clients_are_healthy | ||
title: "Check if all clients are ready" | ||
timeout: 1m | ||
|
||
- name: run_tasks_concurrent | ||
title: "Check if all EL & CL clients are synced and the tx spammer is working" | ||
timeout: 5m | ||
config: | ||
tasks: | ||
- name: check_consensus_sync_status | ||
title: "Check if CL clients are synced" | ||
- name: check_execution_sync_status | ||
title: "Check if EL clients are synced" | ||
|
||
- name: run_task_matrix | ||
title: "Check block proposals from all client pairs" | ||
timeout: 6m | ||
configVars: | ||
matrixValues: "validatorPairNames" | ||
config: | ||
runConcurrent: true | ||
matrixVar: "validatorPairName" | ||
task: | ||
name: check_consensus_block_proposals | ||
title: "Wait for block proposal from ${validatorPairName}" | ||
config: | ||
minTransactionCount: 240 | ||
configVars: | ||
validatorNamePattern: "validatorPairName" | ||
|
||
- name: run_tasks_concurrent | ||
title: "Check chain stability (reorgs and forks)" | ||
timeout: 7m | ||
config: | ||
tasks: | ||
- name: check_consensus_reorgs | ||
title: "Check consensus reorgs" | ||
- name: check_consensus_forks | ||
title: "Check consensus forks" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
participants: | ||
- el_type: geth | ||
el_image: ethereum/client-go:v1.14.12 | ||
cl_type: lighthouse | ||
cl_image: sigp/lighthouse:v5.3.0 | ||
validator_count: 32 | ||
- el_type: geth | ||
el_image: ethereum/client-go:v1.14.12 | ||
cl_type: lighthouse | ||
cl_image: sigp/lighthouse:v5.3.0 | ||
validator_count: 32 | ||
- el_type: geth | ||
el_image: ethereum/client-go:v1.14.12 | ||
cl_type: lambda | ||
cl_image: lambda_ethereum_consensus:latest | ||
use_separate_vc: false | ||
count: 1 | ||
validator_count: 32 | ||
cl_max_mem: 4096 | ||
keymanager_enabled: true | ||
|
||
additional_services: | ||
# - assertoor | ||
- tx_spammer | ||
- dora | ||
|
||
#assertoor_params: | ||
# run_stability_check: false | ||
# run_block_proposal_check: false | ||
# tests: [] | ||
# - https://raw.githubusercontent.com/lambdaclass/lambda_ethereum_consensus/refs/heads/main/.github/config/assertoor/cl-stability-check.yml | ||
|
||
tx_spammer_params: | ||
tx_spammer_extra_args: ["--txcount=3", "--accounts=80"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.