Skip to content

Commit 67e3da0

Browse files
authored
fix: pectra example (ethereum#605)
1 parent cdeab93 commit 67e3da0

23 files changed

+59
-46
lines changed

.github/tests/pectra-devnet-0.yaml

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
participants:
2-
- el_type: geth
3-
el_image: ethpandaops/geth:lightclient-prague-devnet-0
4-
cl_type: grandine
5-
cl_image: ethpandaops/grandine:feature-electra
6-
- el_type: nethermind
7-
el_image: nethermindeth/nethermind:pectra
8-
cl_type: lodestar
9-
cl_image: ethpandaops/lodestar:electra-fork
10-
network_params:
11-
electra_fork_epoch: 1
12-
additional_services:
13-
- dora
14-
snooper_enabled: true
2+
- el_type: geth
3+
el_image: ethpandaops/geth:lightclient-prague-devnet-0
4+
cl_type: grandine
5+
cl_image: ethpandaops/grandine:feature-electra
6+
- el_type: nethermind
7+
el_image: nethermindeth/nethermind:pectra
8+
cl_type: lodestar
9+
cl_image: ethpandaops/lodestar:electra-fork
10+
- el_type: ethereumjs
11+
el_image: ethpandaops/ethereumjs:master
12+
cl_type: lodestar
13+
cl_image: ethpandaops/lodestar:electra-fork
14+
network_params:
15+
electra_fork_epoch: 1
16+
additional_services:
17+
- dora
18+
snooper_enabled: true

.github/tests/peerdas-fork.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ participants:
22
- el_type: geth
33
cl_type: prysm
44
cl_image: ethpandaops/prysm-beacon-chain:peerDASE2E
5+
cl_max_mem: 2048
6+
- el_type: geth
7+
cl_type: lighthouse
8+
cl_extra_args: [
9+
--subscribe-all-data-column-subnets,
10+
]
11+
cl_image: ethpandaops/lighthouse:das
512
- el_type: geth
613
cl_type: lighthouse
714
cl_image: ethpandaops/lighthouse:das

.github/tests/verkle-gen-devnet-4.yaml

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
participants:
2+
- el_type: geth
3+
el_image: ethpandaops/geth:kaustinen-with-shapella
4+
cl_type: lighthouse
5+
cl_image: ethpandaops/lighthouse:verkle-trees-capella
6+
count: 2
7+
- el_type: geth
8+
el_image: ethpandaops/geth:kaustinen-with-shapella
9+
cl_type: lodestar
10+
cl_image: ethpandaops/lodestar:g11tech-verge
11+
network_params:
12+
network: verkle-gen-devnet-6
13+

src/cl/grandine/grandine_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ def get_beacon_config(
409409
labels=shared_utils.label_maker(
410410
constants.CL_TYPE.grandine,
411411
constants.CLIENT_TYPES.cl,
412-
image,
412+
# image,
413413
el_context.client_name,
414414
extra_labels,
415415
),

src/cl/lighthouse/lighthouse_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ def get_beacon_config(
405405
labels=shared_utils.label_maker(
406406
constants.CL_TYPE.lighthouse,
407407
constants.CLIENT_TYPES.cl,
408-
image,
408+
# image,
409409
el_context.client_name,
410410
extra_labels,
411411
),

src/cl/lodestar/lodestar_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ def get_beacon_config(
391391
labels=shared_utils.label_maker(
392392
constants.CL_TYPE.lodestar,
393393
constants.CLIENT_TYPES.cl,
394-
image,
394+
# image,
395395
el_context.client_name,
396396
extra_labels,
397397
),

src/cl/nimbus/nimbus_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ def get_beacon_config(
397397
labels=shared_utils.label_maker(
398398
constants.CL_TYPE.nimbus,
399399
constants.CLIENT_TYPES.cl,
400-
image,
400+
# image,
401401
el_context.client_name,
402402
extra_labels,
403403
),

src/cl/prysm/prysm_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def get_beacon_config(
375375
labels=shared_utils.label_maker(
376376
constants.CL_TYPE.prysm,
377377
constants.CLIENT_TYPES.cl,
378-
beacon_image,
378+
# beacon_image,
379379
el_context.client_name,
380380
extra_labels,
381381
),

src/cl/teku/teku_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ def get_beacon_config(
432432
labels=shared_utils.label_maker(
433433
constants.CL_TYPE.teku,
434434
constants.CLIENT_TYPES.cl,
435-
image,
435+
# image,
436436
el_context.client_name,
437437
extra_labels,
438438
),

0 commit comments

Comments
 (0)