Commit d6bec165 authored by Barnabas Busa's avatar Barnabas Busa Committed by GitHub

fix: add fulu overrides automatically for assertoor and dora if fulu is active (#858)

Signed-off-by: default avatarBarnabas Busa <barnabas.busa@ethereum.org>
parent 50ec5811
...@@ -121,6 +121,10 @@ def get_config( ...@@ -121,6 +121,10 @@ def get_config(
IMAGE_NAME = assertoor_params.image IMAGE_NAME = assertoor_params.image
if assertoor_params.image == constants.DEFAULT_ASSERTOOR_IMAGE:
if network_params.fulu_fork_epoch < constants.FULU_FORK_EPOCH:
IMAGE_NAME = "ethpandaops/assertoor:fulu-support"
return ServiceConfig( return ServiceConfig(
image=IMAGE_NAME, image=IMAGE_NAME,
ports=USED_PORTS, ports=USED_PORTS,
......
...@@ -122,6 +122,10 @@ def get_config( ...@@ -122,6 +122,10 @@ def get_config(
IMAGE_NAME = dora_params.image IMAGE_NAME = dora_params.image
if dora_params.image == constants.DEFAULT_DORA_IMAGE:
if network_params.fulu_fork_epoch < constants.FULU_FORK_EPOCH:
IMAGE_NAME = "ethpandaops/dora:fulu-support"
return ServiceConfig( return ServiceConfig(
image=IMAGE_NAME, image=IMAGE_NAME,
ports=USED_PORTS, ports=USED_PORTS,
......
...@@ -85,7 +85,8 @@ MOCK_MEV_TYPE = "mock" ...@@ -85,7 +85,8 @@ MOCK_MEV_TYPE = "mock"
FLASHBOTS_MEV_TYPE = "flashbots" FLASHBOTS_MEV_TYPE = "flashbots"
MEV_RS_MEV_TYPE = "mev-rs" MEV_RS_MEV_TYPE = "mev-rs"
COMMIT_BOOST_MEV_TYPE = "commit-boost" COMMIT_BOOST_MEV_TYPE = "commit-boost"
DEFAULT_DORA_IMAGE = "ethpandaops/dora:latest"
DEFAULT_ASSERTOOR_IMAGE = "ethpandaops/assertoor:latest"
DEFAULT_SNOOPER_IMAGE = "ethpandaops/rpc-snooper:latest" DEFAULT_SNOOPER_IMAGE = "ethpandaops/rpc-snooper:latest"
DEFAULT_FLASHBOTS_RELAY_IMAGE = "flashbots/mev-boost-relay:0.29.2a3" DEFAULT_FLASHBOTS_RELAY_IMAGE = "flashbots/mev-boost-relay:0.29.2a3"
DEFAULT_FLASHBOTS_BUILDER_IMAGE = "ethpandaops/reth-rbuilder:develop" DEFAULT_FLASHBOTS_BUILDER_IMAGE = "ethpandaops/reth-rbuilder:develop"
......
...@@ -1028,7 +1028,7 @@ def get_default_blockscout_params(): ...@@ -1028,7 +1028,7 @@ def get_default_blockscout_params():
def get_default_dora_params(): def get_default_dora_params():
return { return {
"image": "ethpandaops/dora:latest", "image": constants.DEFAULT_DORA_IMAGE,
"env": {}, "env": {},
} }
...@@ -1127,7 +1127,7 @@ def get_default_goomy_blob_params(): ...@@ -1127,7 +1127,7 @@ def get_default_goomy_blob_params():
def get_default_assertoor_params(): def get_default_assertoor_params():
return { return {
"image": "ethpandaops/assertoor:latest", "image": constants.DEFAULT_ASSERTOOR_IMAGE,
"run_stability_check": False, "run_stability_check": False,
"run_block_proposal_check": False, "run_block_proposal_check": False,
"run_lifecycle_test": False, "run_lifecycle_test": False,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment