Skip to content

Commit

Permalink
updating devnet configs
Browse files Browse the repository at this point in the history
  • Loading branch information
parithosh committed May 25, 2024
1 parent 95b98c0 commit 7197f23
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 7 deletions.
8 changes: 4 additions & 4 deletions ansible/inventories/devnet-0/group_vars/all/images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ default_ethereum_client_images:
lighthouse: ethpandaops/lighthouse:ef-tests-electra-b5333b4
lodestar: ethpandaops/lodestar:pectra-devnet-0-764bcc8
nimbus: ethpandaops/nimbus-eth2:pectra-5f3e61c
prysm: ethpandaops/prysm-beacon-chain:electra-devnet0-daad61b
prysm_validator: ethpandaops/prysm-validator:electra-devnet0-daad61b
teku: ethpandaops/teku:master-212b33f
prysm: ethpandaops/prysm-beacon-chain:electra-devnet0-linux-amd64-20aa10b
prysm_validator: ethpandaops/prysm-validator:electra-devnet0-linux-amd64-20aa10b
teku: ethpandaops/teku:master-f24e663
grandine: ethpandaops/grandine:electra-431fbe3
### Execution layer clients
besu: ethpandaops/besu:pectra-interop-ac137c2
geth: ethpandaops/geth:bad-block-nil-check
erigon: thorax/erigon:devel
ethereumjs: ethpandaops/ethereumjs:master-cfe942e
nethermind: ethpandaops/nethermind:pectra-283f63b
reth: ethpandaops/reth:devnet-0-3736d8f
reth: ethpandaops/reth:devnet-0-732661b


default_tooling_images:
Expand Down
9 changes: 9 additions & 0 deletions ansible/inventories/devnet-0/group_vars/mev_boost.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
mev_boost_container_image: jtraglia/mev-boost:electra

mev_boost_container_env:
GENESIS_FORK_VERSION: "0x10528811"
SKIP_RELAY_SIGNATURE_CHECK: "1"
BOOST_LISTEN_ADDR: 0.0.0.0:{{ mev_boost_server_port }}
RELAYS: http://0xa3bed304c277980e2e7c8e3717b2bf737082cdb3d8984ecdad69cce47396c2a256f33fe412b2d3ad6b9e754565457ca0@68.183.214.175:28545/

ethereum_node_mev_boost_enabled: true
1 change: 1 addition & 0 deletions ansible/inventories/devnet-0/group_vars/prysm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ prysm_container_command_extra_simple_args:
- --enable-debug-rpc-endpoints
- --verbosity=debug
- --subscribe-all-subnets
- --save-full-execution-payloads
prysm_container_command_extra_bootnode_args: >-
{{ ethereum_cl_bootnodes | map('regex_replace', '^', '--bootstrap-node=') | list }}
Expand Down
3 changes: 2 additions & 1 deletion ansible/inventories/devnet-0/group_vars/reth.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# role: ethpandaops.general.bootstrap
bootstrap_default_user_authorized_keys_github_team_el:
- gakonst

- shekhirin
# role: ethpandaops.general.ethereum_node
ethereum_node_el: reth
# role: ethpandaops.general.reth
Expand All @@ -18,6 +18,7 @@ reth_container_volumes:
reth_container_command_extra_args:
- --chain=/network-config/genesis.json
- --bootnodes={{ ethereum_el_bootnodes | join(',') }}
- --http.api=trace,rpc,eth,debug
prometheus_config: |
global:
scrape_interval: 30s
Expand Down
7 changes: 5 additions & 2 deletions ansible/inventories/devnet-0/inventory.ini
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ mev-relay-2 ansible_host=68.183.214.175 ipv6=2a03:b0c0:3:d0::1385:f001 cloud=dig
nimbus-geth-1 ansible_host=164.92.224.157 ipv6=2a03:b0c0:3:d0::174c:a001 cloud=digitalocean cloud_region=fra1 validator_start=900 validator_end=1000

[prysm_besu]
prysm-besu-1 ansible_host=164.92.225.121 ipv6=2a03:b0c0:3:d0::1bd1:d001 cloud=digitalocean cloud_region=fra1 validator_start=600 validator_end=700
prysm-besu-1 ansible_host=164.92.225.121 ipv6=2a03:b0c0:3:d0::1bd1:d001 cloud=digitalocean cloud_region=fra1 validator_start=600 validator_end=700

[prysm_geth]
prysm-geth-1 ansible_host=134.122.77.250 ipv6=2a03:b0c0:3:d0::1c55:4001 cloud=digitalocean cloud_region=fra1 validator_start=500 validator_end=600
Expand Down Expand Up @@ -144,4 +144,7 @@ lighthouse-geth-1
bootnode-1

[goomy]
bootnode-1
bootnode-1

[mev_boost]
lighthouse-besu-1
12 changes: 12 additions & 0 deletions terraform/devnet-0/digitalocean.tf
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,18 @@ resource "digitalocean_firewall" "main" {
source_addresses = ["0.0.0.0/0", "::/0"]
}

inbound_rule {
protocol = "udp"
port_range = "28545"
source_addresses = ["0.0.0.0/0", "::/0"]
}

inbound_rule {
protocol = "tcp"
port_range = "28545"
source_addresses = ["0.0.0.0/0", "::/0"]
}

// Execution layer p2p Port
inbound_rule {
protocol = "tcp"
Expand Down

0 comments on commit 7197f23

Please sign in to comment.