nimbus.prater: use Erigon EL node if available

Beginning of work on testing multi-EL node setup:
https://github.com/status-im/infra-nimbus/issues/144

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-03-22 12:10:34 +01:00
parent 0943ae2f76
commit 9aa83f8d47
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4

View File

@ -100,7 +100,9 @@ beacon_node_light_client_data_enabled: '{{ (node.public_api is defined and node.
beacon_node_light_client_data_serve: true beacon_node_light_client_data_serve: true
beacon_node_light_client_data_import_mode: 'full' beacon_node_light_client_data_import_mode: 'full'
# Execution layer Enginer API # Execution layer Enginer API
beacon_node_exec_layer_urls: ['http://localhost:{{ geth_authrpc_port }}'] beacon_node_exec_layer_urls: >-
{{ [ "http://localhost:"+geth_authrpc_port ] +
([ "http://localhost:"+erigon_authrpc_port ] if node.get("erigon", False) else []) }}
beacon_node_exec_layer_jwt_secret: '{{ geth_authrpc_jwtsecret }}' beacon_node_exec_layer_jwt_secret: '{{ geth_authrpc_jwtsecret }}'
# Periodic resync to save space # Periodic resync to save space
beacon_node_resync_enabled: true beacon_node_resync_enabled: true