-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: separate validator clients from CL clients (#497)
Separates the validator clients more cleanly from the CL clients. This then allows the use of different combinations of CL/VC clients, e.g. Teku VC with Lodestar CL. The only VC that doesn't work with different beacon nodes is Prysm at the moment. The `use_separate_validator_client` flag defaults to false for CL clients that can run validators in the same process as the CL (preserving the way the `cl_split_mode_enabled` worked before this PR). I believe this can be quite useful to test different VC<->CL combinations for compatibility. --------- Co-authored-by: Barnabas Busa <[email protected]>
- Loading branch information
1 parent
fe2de7e
commit 90da2c3
Showing
30 changed files
with
910 additions
and
945 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
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 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 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 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,10 @@ | ||
participants: | ||
- el_client_type: geth | ||
cl_client_type: teku | ||
use_separate_validator_client: true | ||
validator_client_type: lodestar | ||
- el_client_type: besu | ||
cl_client_type: nimbus | ||
use_separate_validator_client: true | ||
validator_client_type: lighthouse | ||
additional_services: [] |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
participants: | ||
- el_client_type: reth | ||
cl_client_type: teku | ||
cl_split_mode_enabled: true | ||
use_separate_validator_client: true | ||
node_selectors: { | ||
"kubernetes.io/hostname": testing-1, | ||
} | ||
- el_client_type: reth | ||
cl_client_type: teku | ||
cl_split_mode_enabled: true | ||
use_separate_validator_client: true | ||
global_node_selectors: { | ||
"kubernetes.io/hostname": testing-2, | ||
} |
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 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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
participants: | ||
- el_client_type: geth | ||
cl_client_type: teku | ||
cl_split_mode_enabled: true | ||
use_separate_validator_client: true | ||
validator_count: 0 | ||
- el_client_type: nethermind | ||
cl_client_type: teku | ||
cl_split_mode_enabled: true | ||
use_separate_validator_client: true | ||
- el_client_type: erigon | ||
cl_client_type: teku | ||
cl_split_mode_enabled: true | ||
use_separate_validator_client: true | ||
- el_client_type: besu | ||
cl_client_type: teku | ||
cl_split_mode_enabled: true | ||
use_separate_validator_client: true | ||
- el_client_type: reth | ||
cl_client_type: teku | ||
cl_split_mode_enabled: true | ||
use_separate_validator_client: true | ||
- el_client_type: ethereumjs | ||
cl_client_type: teku | ||
cl_split_mode_enabled: true | ||
use_separate_validator_client: true | ||
additional_services: [] |
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 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 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 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
Oops, something went wrong.