nimbus.mainnet: use local Geth nodes for metal hosts

https://github.com/status-im/infra-nimbus/issues/127

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-09-15 14:31:04 +02:00
parent 513fb2bb88
commit fc23654e8a
No known key found for this signature in database
GPG Key ID: 09AA5403E54D9931
1 changed files with 8 additions and 1 deletions

View File

@ -61,7 +61,14 @@ beacon_node_dist_validators_enabled: false
# Bootnodes should subscribe to all subnets
beacon_node_subscribe_all: true
# HTTP RPC support is unstable
beacon_node_web3_urls: '{{ beacon_node_web3_urls_all }}'
#beacon_node_web3_urls: '{{ beacon_node_web3_urls_all }}'
beacon_node_web3_jwt_secret: '{{ geth_authrpc_jwtsecret }}'
beacon_node_web3_urls: |-
{{ (data_center == "he-eu-hel1")
| ternary(
['http://localhost:{{ geth_authrpc_port }}'],
beacon_node_web3_urls_all
) }}
# Periodic resync to save space
beacon_node_resync_enabled: true
beacon_node_resync_timer_enabled: '{{ idx % 2 == 1 }}'