2020-11-25 14:58:44 +00:00
|
|
|
---
|
2021-10-05 10:08:14 +00:00
|
|
|
swap_file_size_mb: 2048
|
|
|
|
|
2020-11-25 14:58:44 +00:00
|
|
|
beacon_node_network: 'mainnet'
|
2021-10-25 12:30:22 +00:00
|
|
|
# TODO This is to avoid too long service names.
|
|
|
|
beacon_node_repo_branch: '{{ (node.branch == "libp2p") | ternary("nim-libp2p-auto-bump-unstable", node.branch) }}'
|
2021-10-05 15:48:01 +00:00
|
|
|
# TODO Drop this once all nodes have an number.
|
|
|
|
service_number: '{{ node.get("num", False) | ternary(("-%02d"|format(node.get("num", 0))), "") }}'
|
|
|
|
beacon_node_service_name: 'beacon-node-{{ beacon_node_network }}-{{ node.branch }}{{ service_number }}'
|
2022-02-28 16:32:01 +00:00
|
|
|
beacon_node_service_path: '/data/{{ beacon_node_service_name }}'
|
2021-10-05 15:48:01 +00:00
|
|
|
# Ports
|
|
|
|
beacon_node_discovery_port: '{{ 9000 + port_offset }}'
|
|
|
|
beacon_node_listening_port: '{{ 9000 + port_offset }}'
|
|
|
|
beacon_node_metrics_port: '{{ 9200 + port_offset }}'
|
|
|
|
beacon_node_rest_port: '{{ 9300 + port_offset }}'
|
|
|
|
# Firewall
|
|
|
|
beacon_node_firewall_libp2p_open: '{{ node.get("open_libp2p_ports", true) }}'
|
|
|
|
# Builds
|
|
|
|
beacon_node_build_frequency: '*-*-* {{ 12 + port_offset }}:00:00'
|
|
|
|
# Tuning
|
|
|
|
beacon_node_threads: '{{ (node.branch == "testing") | ternary(4, 1) }}'
|
2022-01-21 11:27:06 +00:00
|
|
|
# Monitoring
|
|
|
|
beacon_node_validator_monitor_auto: '{{ node.branch == "unstable" }}'
|
|
|
|
beacon_node_validator_monitor_totals: >-
|
|
|
|
{{ node.branch == "unstable" and
|
|
|
|
(node.public_api is defined and node.public_api) }}
|
2021-10-04 10:07:32 +00:00
|
|
|
# Mainnet validators run on a separate fleet.
|
|
|
|
beacon_node_dist_validators_enabled: false
|
2021-03-08 14:09:51 +00:00
|
|
|
# Bootnodes should subscribe to all subnets
|
|
|
|
beacon_node_subscribe_all: true
|
2021-12-03 18:40:52 +00:00
|
|
|
# HTTP RPC support is unstable
|
2022-01-25 17:27:03 +00:00
|
|
|
beacon_node_web3_urls: '{{ beacon_node_web3_urls_all | reject("match", "^http://") }}'
|
2022-03-25 15:19:33 +00:00
|
|
|
# Light client data
|
|
|
|
beacon_node_light_client_data_enabled: '{{ node.branch in ["unstable", "libp2p"] }}'
|
2021-10-05 15:48:01 +00:00
|
|
|
|
2022-02-28 16:32:01 +00:00
|
|
|
# Purge node DB periodically to test syncing.
|
|
|
|
nimbus_db_purge_node_service_name: '{{ beacon_node_service_name }}'
|
|
|
|
nimbus_db_purge_node_service_path: '{{ beacon_node_service_path }}'
|
|
|
|
nimbus_db_purge_node_network_name: '{{ beacon_node_network }}'
|
|
|
|
nimbus_db_purge_timer_frequency: 'weekly'
|
|
|
|
nimbus_db_purge_truster_node_api_url: 'http://localhost:{{ beacon_node_rest_port|int - 1 }}'
|
|
|
|
nimbus_db_purge_trusted_node_sync_enabled: '{{ node.get("db_sync", false) }}'
|
|
|
|
|
2021-10-05 15:48:01 +00:00
|
|
|
# Split by hostname for more central location
|
|
|
|
nodes_layout:
|
|
|
|
'stable-small-01.aws-eu-central-1a.nimbus.mainnet':
|
|
|
|
- { branch: 'stable' }
|
|
|
|
|
|
|
|
'stable-small-02.aws-eu-central-1a.nimbus.mainnet':
|
|
|
|
- { branch: 'stable' }
|
|
|
|
|
|
|
|
'metal-01.he-eu-hel1.nimbus.mainnet':
|
|
|
|
- { branch: 'stable', num: 1 }
|
|
|
|
- { branch: 'stable', num: 2 }
|
|
|
|
- { branch: 'testing', num: 1, open_libp2p_ports: false }
|
|
|
|
- { branch: 'testing', num: 2 }
|
2022-01-21 11:27:06 +00:00
|
|
|
- { branch: 'unstable', num: 1, public_api: true }
|
2021-10-05 15:48:01 +00:00
|
|
|
- { branch: 'unstable', num: 2 }
|
|
|
|
|
|
|
|
'metal-02.he-eu-hel1.nimbus.mainnet':
|
2022-04-26 06:16:44 +00:00
|
|
|
- { branch: 'stable', num: 1 }
|
2021-10-05 15:48:01 +00:00
|
|
|
- { branch: 'stable', num: 2 }
|
2022-01-21 11:27:06 +00:00
|
|
|
- { branch: 'testing', num: 1, public_api: true }
|
2021-10-05 15:48:01 +00:00
|
|
|
- { branch: 'testing', num: 2 }
|
|
|
|
- { branch: 'unstable', num: 1, open_libp2p_ports: false }
|
|
|
|
- { branch: 'unstable', num: 2 }
|
|
|
|
|
|
|
|
'metal-03.he-eu-hel1.nimbus.mainnet':
|
|
|
|
- { branch: 'stable', num: 1 }
|
|
|
|
- { branch: 'stable', num: 2 }
|
|
|
|
- { branch: 'testing', num: 1 }
|
|
|
|
- { branch: 'testing', num: 2 }
|
|
|
|
- { branch: 'unstable', num: 1 }
|
|
|
|
- { branch: 'unstable', num: 2 }
|
|
|
|
|
|
|
|
'metal-04.he-eu-hel1.nimbus.mainnet':
|
|
|
|
- { branch: 'stable', num: 1 }
|
|
|
|
- { branch: 'stable', num: 2 }
|
|
|
|
- { branch: 'testing', num: 1 }
|
|
|
|
- { branch: 'testing', num: 2 }
|
|
|
|
- { branch: 'unstable', num: 1 }
|
|
|
|
- { branch: 'unstable', num: 2 }
|
|
|
|
|
|
|
|
'metal-05.he-eu-hel1.nimbus.mainnet':
|
|
|
|
- { branch: 'stable', num: 1 }
|
|
|
|
- { branch: 'stable', num: 2 }
|
|
|
|
- { branch: 'testing', num: 1 }
|
|
|
|
- { branch: 'testing', num: 2 }
|
2022-02-28 16:32:01 +00:00
|
|
|
- { branch: 'unstable', num: 1, db_purge: true }
|
2021-10-05 15:48:01 +00:00
|
|
|
- { branch: 'unstable', num: 2 }
|
2021-10-25 12:30:22 +00:00
|
|
|
- { branch: 'libp2p', num: 1 }
|
2021-10-05 15:48:01 +00:00
|
|
|
|
|
|
|
'metal-06.he-eu-hel1.nimbus.mainnet':
|
|
|
|
- { branch: 'stable', num: 1 }
|
|
|
|
- { branch: 'stable', num: 2 }
|
|
|
|
- { branch: 'testing', num: 1 }
|
|
|
|
- { branch: 'testing', num: 2 }
|
2022-02-28 16:32:01 +00:00
|
|
|
- { branch: 'unstable', num: 1, db_purge: true, db_sync: true }
|
2021-10-05 15:48:01 +00:00
|
|
|
- { branch: 'unstable', num: 2 }
|
2021-10-25 12:30:22 +00:00
|
|
|
- { branch: 'libp2p', num: 1 }
|