2021-03-18 04:59:45 +00:00
|
|
|
---
|
|
|
|
beacon_node_network: 'prater'
|
2021-10-25 10:58:59 +00:00
|
|
|
# TODO This is to avoid too long service names.
|
2022-02-17 12:46:56 +00:00
|
|
|
beacon_node_repo_branch: >-
|
|
|
|
{{ node.branch_override is defined | ternary(
|
|
|
|
node.branch_override,
|
|
|
|
((node.branch == "libp2p") | ternary("nim-libp2p-auto-bump-unstable", node.branch))
|
|
|
|
) }}
|
2022-02-17 13:24:25 +00:00
|
|
|
beacon_node_nim_commit: '{{ node.get("nim_commit", "") }}'
|
2022-07-01 12:15:11 +00:00
|
|
|
beacon_node_build_nim_flags: '-d:noSignalHandler {{ node.get("nim_flags", "") }}'
|
2021-10-04 19:55:47 +00:00
|
|
|
# TODO Drop this once all nodes have an number.
|
|
|
|
service_number: '{{ node.get("num", False) | ternary(("-%02d"|format(node.get("num", 0))), "") }}'
|
2022-02-15 20:10:38 +00:00
|
|
|
beacon_node_service_name: 'beacon-node-{{ beacon_node_network }}-{{ node.branch }}'
|
2021-09-29 17:16:09 +00:00
|
|
|
# Ports
|
2022-08-10 14:54:21 +00:00
|
|
|
beacon_node_discovery_port: '{{ 9000 + idx }}'
|
|
|
|
beacon_node_listening_port: '{{ 9000 + idx }}'
|
|
|
|
beacon_node_metrics_port: '{{ 9200 + idx }}'
|
|
|
|
beacon_node_rest_port: '{{ 9300 + idx }}'
|
2021-10-04 21:45:19 +00:00
|
|
|
# Firewall
|
2021-10-05 15:48:01 +00:00
|
|
|
beacon_node_firewall_libp2p_open: '{{ node.get("open_libp2p_ports", true) }}'
|
2021-09-29 17:16:09 +00:00
|
|
|
# Tuning
|
2021-09-21 18:29:04 +00:00
|
|
|
beacon_node_max_peers: 300
|
2022-02-15 20:10:38 +00:00
|
|
|
beacon_node_threads: >-
|
|
|
|
{{ node.num_threads is defined | ternary(
|
|
|
|
node.num_threads,
|
|
|
|
(node.branch == "testing") | ternary(4, 1)
|
|
|
|
) }}
|
2022-01-21 11:27:06 +00:00
|
|
|
# Monitoring
|
2022-06-01 09:47:50 +00:00
|
|
|
beacon_node_validator_monitor_auto: true
|
2022-01-21 11:27:06 +00:00
|
|
|
beacon_node_validator_monitor_totals: >-
|
2022-06-01 09:47:50 +00:00
|
|
|
{{ (node.public_api is defined and node.public_api)
|
|
|
|
or (node.end is defined and (node.end - node.start) > 64) }}
|
2021-10-04 19:55:47 +00:00
|
|
|
# Builds
|
|
|
|
beacon_node_build_frequency: '{{ node.get("build_freq", "daily") }}'
|
|
|
|
beacon_node_build_start_time: '{{ node.get("build_start", omit) }}'
|
|
|
|
# Validators from nimbus-private repo
|
|
|
|
beacon_node_dist_validators_enabled: '{{ node.start is defined and node.end is defined }}'
|
|
|
|
beacon_node_dist_validators_start: '{{ node.start | mandatory }}'
|
|
|
|
beacon_node_dist_validators_end: '{{ node.end | mandatory }}'
|
2021-07-14 12:59:40 +00:00
|
|
|
# Windows service user
|
2021-08-13 20:05:12 +00:00
|
|
|
beacon_node_service_user_pass: '{{lookup("bitwarden", "nimbus/windows", field="password")}}'
|
2021-12-03 18:40:52 +00:00
|
|
|
# HTTP RPC support is unstable
|
2022-08-11 17:23:41 +00:00
|
|
|
beacon_node_web3_urls: '{{ beacon_node_web3_urls_all }}'
|
|
|
|
beacon_node_web3_jwt_secret: '{{lookup("bitwarden", "nimbus/jwt-token")}}'
|
2021-07-14 12:59:40 +00:00
|
|
|
|
2022-08-16 16:01:55 +00:00
|
|
|
# Open Ports
|
|
|
|
open_ports_default_comment: 'Nimbus REST API'
|
|
|
|
open_ports_default_chain: 'VPN'
|
|
|
|
open_ports_list:
|
|
|
|
- { port: '9300:9310', ipset: '{{ env }}.{{ stage }}' }
|
|
|
|
|
2021-06-28 14:41:04 +00:00
|
|
|
# Split by hostname for more central location
|
2021-10-04 19:55:47 +00:00
|
|
|
nodes_layout:
|
2022-02-15 20:10:38 +00:00
|
|
|
# WARNING: The nodes hosted on AWS are bootstrap nodes and should not be changed.
|
|
|
|
'stable-large-01.aws-eu-central-1a.nimbus.prater': # 2000 each
|
|
|
|
- { branch: 'stable', start: 0, end: 2000 }
|
2021-10-04 19:55:47 +00:00
|
|
|
|
2022-02-15 20:10:38 +00:00
|
|
|
'testing-large-01.aws-eu-central-1a.nimbus.prater': # 2000 each
|
|
|
|
- { branch: 'testing', start: 2000, end: 4000 }
|
2021-10-04 19:55:47 +00:00
|
|
|
|
2022-02-15 20:10:38 +00:00
|
|
|
'unstable-large-01.aws-eu-central-1a.nimbus.prater': # 2000 each
|
|
|
|
- { branch: 'unstable', start: 4000, end: 6000 }
|
2021-10-04 19:55:47 +00:00
|
|
|
|
2022-02-15 20:10:38 +00:00
|
|
|
'macos-01.ms-eu-dublin.nimbus.prater': # 2000 each
|
|
|
|
- { branch: 'stable', start: 6000, end: 8000, build_start: '13:00:00' }
|
|
|
|
- { branch: 'testing', start: 8000, end: 10000, build_start: '15:00:00' }
|
2022-07-01 12:15:11 +00:00
|
|
|
- { branch: 'unstable', start: 12000, end: 14000, build_start: '16:00:00', nim_flags: '-d:json_rpc_websocket_package=websock' }
|
2021-10-04 19:55:47 +00:00
|
|
|
|
2022-02-28 12:14:04 +00:00
|
|
|
'windows-01.he-eu-hel1.nimbus.prater': # 2000 each
|
2022-02-15 20:10:38 +00:00
|
|
|
- { branch: 'stable', start: 14000, end: 16000, build_start: '13:00:00' }
|
|
|
|
- { branch: 'testing', start: 16000, end: 18000, build_start: '15:00:00' }
|
2022-07-01 12:15:11 +00:00
|
|
|
- { branch: 'unstable', start: 18000, end: 20000, build_start: '16:00:00', nim_flags: '-d:json_rpc_websocket_package=websock' }
|
2021-10-04 21:45:19 +00:00
|
|
|
|
2022-02-15 20:10:38 +00:00
|
|
|
'metal-01.he-eu-hel1.nimbus.prater': # 0 each
|
|
|
|
- { branch: 'stable', build_freq: '*-*-* 13:00:00' }
|
2022-06-28 17:12:24 +00:00
|
|
|
- { branch: 'testing', build_freq: '*-*-* 15:00:00', nim_commit: 'version-1-6' }
|
2022-02-15 20:10:38 +00:00
|
|
|
- { branch: 'unstable', build_freq: '*-*-* 17:00:00', public_api: true }
|
|
|
|
- { branch: 'libp2p', build_freq: '*-*-* 19:00:00' }
|
2022-02-15 20:09:27 +00:00
|
|
|
|
2022-02-15 20:10:38 +00:00
|
|
|
'metal-02.he-eu-hel1.nimbus.prater': # 1 each
|
|
|
|
- { branch: 'stable', start: 20000, end: 20001, build_freq: '*-*-* 13:00:00' }
|
2022-06-28 17:12:24 +00:00
|
|
|
- { branch: 'testing', start: 20001, end: 20002, build_freq: '*-*-* 15:00:00', nim_commit: 'version-1-6', public_api: true }
|
2022-02-15 20:10:38 +00:00
|
|
|
- { branch: 'unstable', start: 20002, end: 20003, build_freq: '*-*-* 17:00:00' }
|
|
|
|
- { branch: 'libp2p', start: 20003, end: 20004, build_freq: '*-*-* 19:00:00' }
|
2022-02-16 16:19:23 +00:00
|
|
|
|
2022-02-15 20:10:38 +00:00
|
|
|
'metal-03.he-eu-hel1.nimbus.prater': # 10 each
|
|
|
|
- { branch: 'stable', start: 20004, end: 20014, build_freq: '*-*-* 11:00:00' }
|
2022-06-28 17:12:24 +00:00
|
|
|
- { branch: 'testing', start: 20024, end: 20034, build_freq: '*-*-* 15:00:00', nim_commit: 'version-1-6' }
|
2022-02-15 20:10:38 +00:00
|
|
|
- { branch: 'unstable', start: 20014, end: 20024, build_freq: '*-*-* 13:00:00', open_libp2p_ports: false }
|
|
|
|
- { branch: 'libp2p', start: 20034, end: 20044, build_freq: '*-*-* 17:00:00' }
|
2022-02-16 16:19:23 +00:00
|
|
|
|
2022-02-15 20:10:38 +00:00
|
|
|
'metal-04.he-eu-hel1.nimbus.prater': # 30 each
|
|
|
|
- { branch: 'stable', start: 20044, end: 20074, build_freq: '*-*-* 11:00:00' }
|
2022-06-28 17:12:24 +00:00
|
|
|
- { branch: 'testing', start: 20104, end: 20134, build_freq: '*-*-* 15:00:00', nim_commit: 'version-1-6' }
|
2022-02-15 20:10:38 +00:00
|
|
|
- { branch: 'unstable', start: 20074, end: 20104, build_freq: '*-*-* 13:00:00' }
|
2022-07-01 12:15:11 +00:00
|
|
|
- { branch: 'libp2p', start: 20134, end: 20164, build_freq: '*-*-* 17:00:00', nim_flags: '-d:json_rpc_websocket_package=websock' }
|
2022-02-16 16:19:23 +00:00
|
|
|
|
2022-02-15 20:10:38 +00:00
|
|
|
'metal-05.he-eu-hel1.nimbus.prater': # 60 each
|
|
|
|
- { branch: 'stable', start: 20164, end: 20224, build_freq: '*-*-* 11:00:00' }
|
2022-06-22 09:39:15 +00:00
|
|
|
- { branch: 'testing', start: 20284, end: 20344, build_freq: '*-*-* 15:00:00', nim_commit: 'version-1-6' }
|
2022-03-10 11:27:14 +00:00
|
|
|
- { branch: 'unstable', start: 20224, end: 20284, build_freq: '*-*-* 13:00:00', open_libp2p_ports: false }
|
2022-07-01 12:15:11 +00:00
|
|
|
- { branch: 'libp2p', start: 20344, end: 20404, build_freq: '*-*-* 17:00:00', nim_commit: 'version-1-6', nim_flags: '-d:json_rpc_websocket_package=websock' }
|
2022-02-15 20:09:27 +00:00
|
|
|
|
2022-05-05 14:11:51 +00:00
|
|
|
'metal-06.he-eu-hel1.nimbus.prater':
|
|
|
|
- { branch: 'stable', start: 20404, end: 31303, build_freq: '*-*-* 11:00:00' } # 10899 validators
|
2022-06-14 13:23:52 +00:00
|
|
|
- { branch: 'testing', start: 31303, end: 39202, build_freq: '*-*-* 15:00:00', open_libp2p_ports: false, nim_commit: 'version-1-6' } # 7899 validators
|
2022-05-05 14:11:51 +00:00
|
|
|
- { branch: 'unstable', start: 39202, end: 45101, build_freq: '*-*-* 13:00:00' } # 5899 validators
|
|
|
|
- { branch: 'libp2p', start: 45101, end: 50000, build_freq: '*-*-* 17:00:00' } # 4899 validators
|