Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions ansible/inventories/devnet-0/group_vars/bootnode.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,14 @@ geth_container_env:
VIRTUAL_PORT: "{{ ethereum_node_el_ports_http_rpc | string }}"
LETSENCRYPT_HOST: "{{ ethereum_node_rcp_hostname }}"
geth_container_command_extra_args:
- --override.genesis={{ eth_testnet_config_dir }}/genesis.json
- --http.api=eth,net,web3,debug,admin
- --http.vhosts=*
- --networkid={{ ethereum_network_id }}
- --syncmode=full
- --gcmode=archive
- --state.scheme=hash
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
- init
- --state.scheme=hash
- /genesis.json

# role: ethpandaops.general.prometheus
prometheus_remote_push_url: https://victoriametrics.ethdevops.io/insert/0/prometheus/api/v1/write
Expand Down
8 changes: 2 additions & 6 deletions ansible/inventories/devnet-0/group_vars/geth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,13 @@ geth_container_env:
VIRTUAL_PORT: "{{ ethereum_node_el_ports_http_rpc | string }}"
LETSENCRYPT_HOST: "{{ ethereum_node_rcp_hostname }}"
geth_container_command_extra_args:
- --override.genesis={{ eth_testnet_config_dir }}/genesis.json
- --http.api=eth,net,web3,debug,admin,txpool
- --http.vhosts=*
- --networkid={{ ethereum_network_id }}
- --syncmode=full
- --bootnodes={{ ethereum_el_bootnodes | join(',') }}
geth_init_custom_network: true
geth_init_custom_network_genesis_file: "{{ eth_testnet_config_dir }}/genesis.json"
geth_init_custom_network_container_command:
- --datadir=/data
- init
- /genesis.json

geth_container_pull: true

prometheus_config: |
Expand Down