-
Notifications
You must be signed in to change notification settings - Fork 97
chore(l1): use local
tag for ethrex images for local hive and kurtosis
#4132
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
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates Docker image tags to use explicit local
tags instead of latest
for locally built ethrex images. This change prevents accidental usage of outdated remote images when developers intend to use their locally built versions.
Key changes:
- Replace
ethrex:latest
withethrex:local
in network configuration files - Update Docker build commands and references to use the
local
tag - Remove deprecated hive client configuration files and consolidate hive setup
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
File | Description |
---|---|
fixtures/networks/network_params_ethrex_only.yaml | Updated ethrex image tag from latest to local |
fixtures/networks/network_params_client_comparision.yaml | Updated ethrex image tags from latest to local for both participants |
fixtures/networks/network_params.yaml | Updated ethrex image tag from latest to local |
fixtures/network/hive_clients/ethrex_local.yml | Removed deprecated hive client configuration file |
fixtures/network/hive_clients/ethrex_git.yml | Removed deprecated hive client configuration file |
fixtures/network/hive_clients/ethrex.yml | Removed deprecated hive client configuration file |
Makefile | Updated Docker build command to tag with local , fixed config file path, and updated hive client file reference |
Comments suppressed due to low confidence (1)
fixtures/networks/network_params_client_comparision.yaml:1
- The filename contains a typo: 'comparision' should be 'comparison'.
participants:
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
@@ -1,4 +0,0 @@ | |||
- client: ethrex |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not supported by us
Motivation
Make it explicit that we're using a locally build version of ethrex. Decouple CI from local use of docker images
Description
Since
latest
is the default tag if none is specified, we had bugs in the past where we were accidentally using an old version of ethrex instead of the locally build one. Lets make it explicit that we're using a local version by using thelocal
tag instead oflatest
.