Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add kurtosis config for DAS testing #5968

Merged
merged 3 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions scripts/local_testnet/network_params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ network_params:
seconds_per_slot: 3
global_log_level: debug
snooper_enabled: false
additional_services:
- dora
- prometheus_grafana
8 changes: 8 additions & 0 deletions scripts/local_testnet/network_params_das_devnet_1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
participants:
- cl_type: lighthouse
cl_image: lighthouse:local
network_params:
network: peerdas-devnet-1
global_log_level: debug
additional_services:
- prometheus_grafana
32 changes: 32 additions & 0 deletions scripts/local_testnet/network_params_das_interop.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
participants:
- cl_type: prysm
cl_image: ethpandaops/prysm-beacon-chain:peerDAS

- cl_type: lighthouse
cl_extra_params: [
--subscribe-all-data-column-subnets,
]
cl_image: lighthouse:local

- cl_type: lighthouse
cl_image: lighthouse:local

- cl_type: teku
cl_image: ethpandaops/teku:nashatyrev-das

# - cl_type: nimbus
# cl_image: ethpandaops/nimbus-eth2:kzgpeerdas
#
# - cl_type: grandine
# cl_image: ethpandaops/grandine:das
#
# - cl_type: lodestar
# cl_image: ethpandaops/lodestar:peerDAS
network_params:
eip7594_fork_epoch: 0
eip7594_fork_version: "0x50000038"
snooper_enabled: false
global_log_level: debug
additional_services:
- dora
- goomy_blob
20 changes: 20 additions & 0 deletions scripts/local_testnet/network_params_das_local.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
participants:
- cl_type: lighthouse
cl_image: lighthouse:local
cl_extra_params:
- --subscribe-all-data-column-subnets
- --target-peers=2
count: 2
- cl_type: lighthouse
cl_image: lighthouse:local
cl_extra_params:
- --target-peers=2
count: 1
network_params:
eip7594_fork_epoch: 0
seconds_per_slot: 6
snooper_enabled: false
global_log_level: debug
additional_services:
- dora
- goomy_blob
3 changes: 0 additions & 3 deletions scripts/local_testnet/start_local_testnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@ if [ "$CI" = true ]; then
# TODO: run assertoor tests
yq eval '.additional_services = []' -i $NETWORK_PARAMS_FILE
echo "Running without additional services (CI mode)."
else
yq eval '.additional_services = ["dora", "prometheus_grafana"]' -i $NETWORK_PARAMS_FILE
echo "Additional services dora and prometheus_grafana added to network_params.yaml"
fi

if [ "$BUILD_IMAGE" = true ]; then
Expand Down