Skip to content

Commit

Permalink
bump bootnode config
Browse files Browse the repository at this point in the history
  • Loading branch information
parithosh committed Nov 24, 2023
1 parent 4748827 commit bf3a2f0
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions ansible/inventories/verkle-gen-devnet-2/group_vars/bootnode.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
#ethereum_cl_bootnodes:
# - "{{ hostvars['lodestar-geth-1']['ethereum_node_fact_cl_enr'] }}"
# - "{{ hostvars['lodestar-geth-10']['ethereum_node_fact_cl_enr'] }}"
#
#ethereum_el_bootnodes:
# - "{{ hostvars['lodestar-geth-1']['ethereum_node_fact_el_enode'] }}"
# - "{{ hostvars['lodestar-geth-10']['ethereum_node_fact_el_enode'] }}"

ethereum_cl_bootnodes:
- "{{ hostvars['lodestar-geth-1']['ethereum_node_fact_cl_enr'] }}"
- "{{ hostvars['lighthouse-geth-1']['ethereum_node_fact_cl_enr'] }}"
ethereum_el_bootnodes:
- "{{ hostvars['lodestar-geth-1']['ethereum_node_fact_el_enode'] }}"
- "{{ hostvars['lighthouse-geth-1']['ethereum_node_fact_el_enode'] }}"
# role: eth_inventory_web
eth_inventory_web_container_networks: "{{ docker_networks_shared }}"
eth_inventory_web_container_env:
Expand Down Expand Up @@ -37,7 +35,7 @@ lodestar_container_command_extra_args:
- --rest.namespace="*"
- --network.connectToDiscv5Bootnodes
- --nat=true
# - --bootnodes={{ ethereum_cl_bootnodes | join(',') }}
- --bootnodes={{ ethereum_cl_bootnodes | join(',') }}

# role: ethpandaops.general.geth
geth_container_name: execution
Expand All @@ -51,10 +49,18 @@ geth_container_command_extra_args:
- --http.vhosts=*
- --networkid={{ ethereum_network_id }}
- --syncmode=full
# - --bootnodes={{ ethereum_el_bootnodes | join(',') }}
- --bootnodes={{ ethereum_el_bootnodes | join(',') }}
- --cache.preimages
- --override.prague={{ ethereum_genesis_timestamp }}
geth_init_custom_network: true
geth_init_custom_network_genesis_file: "{{ eth_testnet_config_dir }}/genesis.json"
geth_container_pull: true
geth_init_custom_network_container_command:
- --datadir=/data
- --override.prague={{ ethereum_genesis_timestamp }}
- --cache.preimages
- init
- /genesis.json

# role: ethpandaops.general.prometheus
prometheus_remote_push_url: https://victoriametrics.ethdevops.io/insert/0/prometheus/api/v1/write
Expand Down

0 comments on commit bf3a2f0

Please sign in to comment.