From 768ecef371bbf167f9df00f87d8a9991e06ab40b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 2 Mar 2023 11:31:02 +0100 Subject: [PATCH] nimbus.prater: use AWS hosts to sync first node MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 875e722..8ead599 100644 --- a/ansible/group_vars/nimbus.prater.yml +++ b/ansible/group_vars/nimbus.prater.yml @@ -92,7 +92,9 @@ beacon_node_resync_enabled: true beacon_node_resync_timer_enabled: '{{ (idx % 2 == 1) and not node.get("public_api") }}' beacon_node_resync_timer_frequency: 'monthly' beacon_node_resync_timer_random_delay_sec: 604800 # 7 days -beacon_node_resync_timer_trusted_api_url: 'http://localhost:{{ beacon_node_rest_port_base }}' +beacon_node_resync_timer_trusted_api_url: >- + {{ "http://stable-large-01.aws-eu-central-1a.nimbus.prater.wg:9300" + if idx == 0 else "http://localhost:"+(beacon_node_rest_port_base|string) }} # Validator Client validator_client_service_name: 'validator-client-{{ validator_client_network }}-{{ node.branch }}'