Skip to content

Commit

Permalink
fix: tag ethereum-package image versions (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
leovct authored Dec 2, 2024
1 parent ae91092 commit 2205c86
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ethereum.star
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ ethereum_package = import_module(
"github.com/ethpandaops/ethereum-package/[email protected]"
)

GETH_IMAGE = "ethereum/client-go:v1.14.12"
LIGHTHOUSE_IMAGE = "sigp/lighthouse:v6.0.0"


def run(plan, args):
port_publisher = generate_port_publisher_config(args)
Expand All @@ -11,7 +14,9 @@ def run(plan, args):
"participants": [
{
"el_type": "geth",
"el_image": GETH_IMAGE,
"cl_type": "lighthouse",
"cl_image": LIGHTHOUSE_IMAGE,
"el_extra_params": ["--gcmode archive"],
"cl_extra_params": [
# Disable optimistic finalized sync. This will force Lighthouse to
Expand All @@ -26,6 +31,8 @@ def run(plan, args):
# required for staking.
"--disable-backfill-rate-limiting",
],
"vc_type": "lighthouse",
"vc_image": LIGHTHOUSE_IMAGE,
"count": args["l1_participants_count"],
}
],
Expand Down

0 comments on commit 2205c86

Please sign in to comment.