nimbus.prater: disable resyncing on all hosts

It just causes unnecessary alerts for an obsolete network.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-11-27 11:41:22 +01:00
parent 0814b65965
commit 58cbfee30f
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
2 changed files with 5 additions and 12 deletions

View File

@ -125,13 +125,8 @@ beacon_node_exec_layer_urls: >-
}} }}
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: false
beacon_node_resync_timer_enabled: '{{ (idx % 2 == 1) and not node.get("public_api") }}' beacon_node_resync_timer_enabled: false
beacon_node_resync_timer_frequency: 'monthly'
beacon_node_resync_timer_random_delay_sec: 604800 # 7 days
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
validator_client_service_name: 'validator-client-{{ validator_client_network }}-{{ node.branch }}' validator_client_service_name: 'validator-client-{{ validator_client_network }}-{{ node.branch }}'

View File

@ -18,8 +18,6 @@ nimbus_era_files_timer_path: '/Users/nimbus/era'
nimbus_era_files_db_path: '/Users/nimbus/beacon-node-{{ beacon_node_network }}-stable/data/db' nimbus_era_files_db_path: '/Users/nimbus/beacon-node-{{ beacon_node_network }}-stable/data/db'
nimbus_era_files_nclidb_path: '/Users/nimbus/beacon-node-{{ beacon_node_network }}-unstable/repo/build/ncli_db' nimbus_era_files_nclidb_path: '/Users/nimbus/beacon-node-{{ beacon_node_network }}-unstable/repo/build/ncli_db'
# Periodic resync to save space # Disable resyncing, Prater is obsolete.
beacon_node_resync_enabled: true beacon_node_resync_enabled: false
beacon_node_resync_timer_enabled: true beacon_node_resync_timer_enabled: false
beacon_node_resync_timer_frequency: '2592000' # monthly
beacon_node_resync_timer_trusted_api_url: 'http://linux-01.ih-eu-mda1.nimbus.prater.wg:9300/'