nimbus.sepolia: fix validator client enabling

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-04-24 08:48:45 +02:00
parent 60dd11a88e
commit 1c472b5d29
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
2 changed files with 5 additions and 4 deletions

View File

@ -36,6 +36,7 @@
- include_role: name=infra-role-validator-client
with_items: '{{ nodes_layout[hostname] }}'
when: validator_client_service_enabled
loop_control:
loop_var: node
index_var: idx

View File

@ -3,7 +3,7 @@
# To search for a validator ID see: ansible/files/layouts/nimbus.sepolia.tsv
nodes_layout:
'linux-01.ih-eu-mda1.nimbus.sepolia':
- { branch: 'stable', start: 0, end: 25, validator_client: true, payload_builder: true }
- { branch: 'testing', start: 25, end: 50, validator_client: false, payload_builder: true }
- { branch: 'unstable', start: 50, end: 75, validator_client: false }
- { branch: 'libp2p', start: 75, end: 100, validator_client: false, payload_builder: true }
- { branch: 'stable', start: 0, end: 25, vc: true, payload_builder: true }
- { branch: 'testing', start: 25, end: 50, vc: false, payload_builder: true }
- { branch: 'unstable', start: 50, end: 75, vc: false }
- { branch: 'libp2p', start: 75, end: 100, vc: false, payload_builder: true }