nimbus.mainnet: switch exec URLs on linux-03

Necessary to allow the geth node to resync using new schema in order to
save disk space.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-01-08 20:58:14 +01:00
parent c7f77f5e32
commit 781b9e7524
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4

View File

@ -74,6 +74,7 @@ beacon_node_light_client_data_import_mode: 'full'
# Execution layer Enginer API # Execution layer Enginer API
beacon_node_exec_layer_jwt_secret: '{{ geth_authrpc_jwtsecret }}' beacon_node_exec_layer_jwt_secret: '{{ geth_authrpc_jwtsecret }}'
beacon_node_exec_layer_urls_local_geth: ['http://localhost:{{ geth_authrpc_port|string }}'] beacon_node_exec_layer_urls_local_geth: ['http://localhost:{{ geth_authrpc_port|string }}']
beacon_node_exec_layer_urls_all: '{{ beacon_node_exec_layer_urls_discovered_geth + beacon_node_exec_layer_urls_local_geth }}'
beacon_node_exec_layer_urls_auto: |- beacon_node_exec_layer_urls_auto: |-
{{ (data_center in ["he-eu-hel1", "ih-eu-mda1"]) {{ (data_center in ["he-eu-hel1", "ih-eu-mda1"])
| ternary( | ternary(
@ -81,8 +82,8 @@ beacon_node_exec_layer_urls_auto: |-
beacon_node_exec_layer_urls_discovered_geth beacon_node_exec_layer_urls_discovered_geth
) }} ) }}
beacon_node_exec_layer_urls: |- beacon_node_exec_layer_urls: |-
{{ beacon_node_exec_layer_urls_auto if inventory_hostname_short == "linux-01" {{ beacon_node_exec_layer_urls_all if inventory_hostname_short == "linux-01"
else (idx % 2 == 0) | ternary(beacon_node_exec_layer_urls_auto, []) }} else (idx % 2 == 0) | ternary(beacon_node_exec_layer_urls_all, []) }}
# Reduce Consul alerts sensitivity # Reduce Consul alerts sensitivity
beacon_node_consul_success_before_passing: 5 beacon_node_consul_success_before_passing: 5