nimbus.mainnet: use all geth nodes in the fleet

To allow individual geth nodes to be re-synced gradually.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-01-09 09:40:14 +01:00
parent 2c766a7991
commit 9fbf61806a
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
2 changed files with 6 additions and 2 deletions

View File

@ -114,6 +114,7 @@ open_ports_list:
- { port: '9300:9310', ipset: '{{ env }}.{{ stage }}' }
- { port: '9400', ipset: 'metrics.hq', comment: 'Geth Exporter' }
- { port: '{{ smart_metrics_listen_port }}', ipset: 'metrics.hq', comment: 'SMART Metrics' }
- { port: '{{ geth_authrpc_port }}', ipset: 'nimbus.mainnet', comment: 'Geth RPC' }
# Split by hostname for more central location
nodes_layout:

View File

@ -31,6 +31,9 @@
become: true
serial: '{{ serial|default(1) }}'
hosts: nimbus-mainnet-metal
vars:
# FIXME: Use all Geth nodes available in the fleet until we resync.
geth_node_api_fleet_name: 'nimbus.{{ beacon_node_network }}'
roles:
- { role: swap-file, tags: [ swap-file ] }
- { role: open-ports, tags: [ open-ports ] }