Skip to content

Commit

Permalink
fix: Switch default images to latest (#99)
Browse files Browse the repository at this point in the history
This should prevent config drift, some images we used as defaults are
months old at this point.
  • Loading branch information
parithosh authored Jul 3, 2023
1 parent 7fcd3e2 commit 4a85c9d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/package_io/parse_input.star
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
DEFAULT_EL_IMAGES = {
"geth": "ethereum/client-go:v1.11.5",
"geth": "ethereum/client-go:latest",
"erigon": "thorax/erigon:devel",
"nethermind": "nethermind/nethermind:1.14.0",
"nethermind": "nethermind/nethermind:latest",
"besu": "hyperledger/besu:develop"
}

DEFAULT_CL_IMAGES = {
"lighthouse": "sigp/lighthouse:v3.5.0",
"teku": "consensys/teku:23.1",
"lighthouse": "sigp/lighthouse:latest",
"teku": "consensys/teku:latest",
"nimbus": "statusim/nimbus-eth2:multiarch-latest",
"prysm": "prysmaticlabs/prysm/beacon-chain:latest,prysmaticlabs/prysm/validator:latest",
"lodestar": "chainsafe/lodestar:v1.7.2",
"prysm": "prysmaticlabs/prysm-beacon-chain:latest,prysmaticlabs/prysm-validator:latest",
"lodestar": "chainsafe/lodestar:latest",
}

BESU_NODE_NAME = "besu"
Expand Down

0 comments on commit 4a85c9d

Please sign in to comment.