32 lines
1.2 KiB
YAML
32 lines
1.2 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'
|
|
|
|
nodes_layout:
|
|
'metal-01.he-eu-hel1.nimbus.ropsten':
|
|
# FIXME: Temporary layout change due to one Geth instance.
|
|
- { start: 0, end: 10000 }
|
|
- { }
|
|
- { }
|
|
- { }
|