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

fix: tag ethereum-package image versions #410

Merged
merged 1 commit into from
Dec 2, 2024
Merged
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
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
Loading