From 2205c86877ce1af19d351763e9e9d256505a62db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Vincent?= <28714795+leovct@users.noreply.github.com> Date: Mon, 2 Dec 2024 14:40:56 +0100 Subject: [PATCH] fix: tag ethereum-package image versions (#410) --- ethereum.star | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ethereum.star b/ethereum.star index 7161a072..b876d5db 100644 --- a/ethereum.star +++ b/ethereum.star @@ -2,6 +2,9 @@ ethereum_package = import_module( "github.com/ethpandaops/ethereum-package/main.star@4.4.0" ) +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) @@ -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 @@ -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"], } ],