pyrmont: fix duplicate dist-validators variable
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
7c1199f4c0
commit
c8c1b4faa8
|
@ -12,6 +12,7 @@ node_branch: |-
|
|||
beacon_node_cont_tag: '{{ node_branch }}-{{ node_size }}'
|
||||
beacon_node_network: 'pyrmont'
|
||||
beacon_node_log_level: 'INFO'
|
||||
beacon_node_dist_validators_enabled: true
|
||||
|
||||
# Split by hostname and branch for more central location.
|
||||
validators_layout:
|
||||
|
|
|
@ -23,20 +23,18 @@
|
|||
# Using whole libp2p branch name would be far too long.
|
||||
beacon_node_service_name: 'beacon-node-{{ beacon_node_network }}-{{ node.name }}'
|
||||
beacon_node_build_frequency: '{{ node.build_frequency }}'
|
||||
beacon_node_dist_validators_enabled: false
|
||||
beacon_node_repo_branch: '{{ node.branch }}'
|
||||
beacon_node_discovery_port: '{{ 9000 + port_offset }}'
|
||||
beacon_node_listening_port: '{{ 9000 + port_offset }}'
|
||||
beacon_node_metrics_port: '{{ 9200 + port_offset }}'
|
||||
beacon_node_rpc_port: '{{ 9900 + port_offset }}'
|
||||
beacon_node_dist_validators_enabled: true
|
||||
beacon_node_dist_validators_start: '{{ validators_layout[hostname][node.name]["start"] | mandatory }}'
|
||||
beacon_node_dist_validators_end: '{{ validators_layout[hostname][node.name]["end"] | mandatory }}'
|
||||
with_items:
|
||||
- { name: 'stable', branch: 'stable', build_frequency: '*-*-* 11:00:00' }
|
||||
- { name: 'unstable', branch: 'unstable', build_frequency: '*-*-* 13:00:00' }
|
||||
- { name: 'testing', branch: 'testing', build_frequency: '*-*-* 15:00:00' }
|
||||
- { name: 'libp2p', branch: 'nim-libp2p-auto-bump-unstable', build_frequency: '*-*-* 17:00:00' }
|
||||
- { name: 'stable', branch: 'stable', build_frequency: '*-*-* 11:00:00' }
|
||||
- { name: 'unstable', branch: 'unstable', build_frequency: '*-*-* 13:00:00' }
|
||||
- { name: 'testing', branch: 'testing', build_frequency: '*-*-* 15:00:00' }
|
||||
- { name: 'libp2p', branch: 'nim-libp2p-auto-bump-unstable', build_frequency: '*-*-* 17:00:00' }
|
||||
loop_control:
|
||||
loop_var: node
|
||||
index_var: port_offset
|
||||
|
|
Loading…
Reference in New Issue