mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-28 06:25:34 +00:00
fb67e2fe16
Signed-off-by: Artur Marud <artur@status.im>
37 lines
1.4 KiB
YAML
37 lines
1.4 KiB
YAML
---
|
|
# Beacon Nodes
|
|
beacon_node_service_name: 'beacon-node-{{ beacon_node_network }}-{{ beacon_node_repo_branch }}-{{ "%02d"|format(idx|int+1) }}'
|
|
beacon_node_network: 'ropsten'
|
|
beacon_node_repo_branch: 'unstable'
|
|
# Builds
|
|
beacon_node_build_frequency: 'daily'
|
|
# Monitoring
|
|
beacon_node_validator_monitor_auto: true
|
|
beacon_node_validator_monitor_totals: true
|
|
# HTTP RPC support is unstable
|
|
beacon_node_web3_urls: '{{ beacon_node_web3_urls_all | reject("match", "^http://") }}'
|
|
beacon_node_extra_flags: ['--terminal-total-difficulty-override=50000000000000000']
|
|
# 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 }}'
|
|
# Ports
|
|
beacon_node_discovery_port: '{{ 9000 + idx|int + 1 }}'
|
|
beacon_node_listening_port: '{{ 9000 + idx|int + 1 }}'
|
|
beacon_node_metrics_port: '{{ 9200 + idx|int + 1 }}'
|
|
beacon_node_rest_port: '{{ 9300 + idx|int + 1 }}'
|
|
beacon_node_rest_address: '0.0.0.0'
|
|
|
|
# Additional disk drive
|
|
bootstrap__extra_volume_device_path: '/dev/nvme2n1'
|
|
bootstrap__extra_volume_path: '/docker'
|
|
bootstrap__extra_volume_bind_path: ''
|
|
|
|
nodes_layout:
|
|
'metal-01.he-eu-hel1.nimbus.ropsten':
|
|
# FIXME: Temporary layout change due to one Geth instance.
|
|
- { start: 0, end: 10000 }
|
|
- { }
|
|
- { }
|
|
- { }
|