From 9aa83f8d47d08eea86e7cd34fb4bd1c2ae50a6e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 22 Mar 2023 12:10:34 +0100 Subject: [PATCH] nimbus.prater: use Erigon EL node if available MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Beginning of work on testing multi-EL node setup: https://github.com/status-im/infra-nimbus/issues/144 Signed-off-by: Jakub SokoĊ‚owski --- ansible/group_vars/nimbus.prater.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ansible/group_vars/nimbus.prater.yml b/ansible/group_vars/nimbus.prater.yml index e138104..870bb29 100644 --- a/ansible/group_vars/nimbus.prater.yml +++ b/ansible/group_vars/nimbus.prater.yml @@ -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_import_mode: 'full' # 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 }}' # Periodic resync to save space beacon_node_resync_enabled: true