Skip to content

Commit

Permalink
add mev node
Browse files Browse the repository at this point in the history
  • Loading branch information
parithosh committed May 17, 2024
1 parent b4da246 commit 4b5339e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/inventories/devnet-0/group_vars/all/images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ default_ethereum_client_images:
### Consensus layer clients
lighthouse: ethpandaops/lighthouse:ef-tests-electra-b5333b4
lodestar: ethpandaops/lodestar:pectra-devnet-0-764bcc8
nimbus: ethpandaops/nimbus-eth2:pectra-99a42e8
nimbus: ethpandaops/nimbus-eth2:pectra-57c1fc7
prysm: ethpandaops/prysm-beacon-chain:electra-devnet0-daad61b
prysm_validator: ethpandaops/prysm-validator:electra-devnet0-daad61b
teku: ethpandaops/teku:master-5de0e53
teku: ethpandaops/teku:master-212b33f
grandine: ethpandaops/grandine:electra-431fbe3
### Execution layer clients
besu: ethpandaops/besu:pectra-interop-ac137c2
Expand Down
3 changes: 3 additions & 0 deletions ansible/inventories/devnet-0/group_vars/mev_relay.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# role: ethpandaops.general.bootstrap
bootstrap_default_user_authorized_keys_github_team_el:
- ralexstokes
4 changes: 4 additions & 0 deletions ansible/inventories/devnet-0/inventory.ini
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ lighthouse-reth-1 ansible_host=178.128.201.94 ipv6=2a03:b0c0:3:d0::1c56:f001 clo
[lodestar_geth]
lodestar-geth-1 ansible_host=139.59.154.205 ipv6=2a03:b0c0:3:d0::1af2:9001 cloud=digitalocean cloud_region=fra1 validator_start=800 validator_end=900

[mev_relay]
mev-relay-1 ansible_host=64.226.107.250 ipv6=2a03:b0c0:3:d0::150b:d001 cloud=digitalocean cloud_region=fra1
mev-relay-2 ansible_host=68.183.214.175 ipv6=2a03:b0c0:3:d0::1385:f001 cloud=digitalocean cloud_region=fra1

[nimbus_geth]
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

Expand Down
1 change: 1 addition & 0 deletions terraform/devnet-0/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ variable "base_cidr_block" {
////////////////////////////////////////////////////////////////////////////////////////
locals {
vm_groups = [
var.mev_relay,
var.bootnode,
var.lighthouse_geth,
var.lighthouse_nethermind,
Expand Down
10 changes: 10 additions & 0 deletions terraform/devnet-0/nodes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ variable "bootnode" {
}
}

# mev-relay
variable "mev_relay" {
default = {
name = "mev-relay"
count = 2
validator_start = 0
validator_end = 0
size = "s-4vcpu-16gb-320gb-intel"
}
}
# Lighthouse
variable "lighthouse_geth" {
default = {
Expand Down

0 comments on commit 4b5339e

Please sign in to comment.