mainnet: add two libp2p nodes on 05 and 06 hosts

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2021-10-25 14:30:22 +02:00
parent bcc297b796
commit 6be2fc03e9
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 6 additions and 1 deletions

View File

@ -2,7 +2,8 @@
swap_file_size_mb: 2048
beacon_node_network: 'mainnet'
beacon_node_repo_branch: '{{ node.branch }}'
# TODO This is to avoid too long service names.
beacon_node_repo_branch: '{{ (node.branch == "libp2p") | ternary("nim-libp2p-auto-bump-unstable", node.branch) }}'
# TODO Drop this once all nodes have an number.
service_number: '{{ node.get("num", False) | ternary(("-%02d"|format(node.get("num", 0))), "") }}'
beacon_node_service_name: 'beacon-node-{{ beacon_node_network }}-{{ node.branch }}{{ service_number }}'
@ -70,6 +71,8 @@ nodes_layout:
- { branch: 'testing', num: 2 }
- { branch: 'unstable', num: 1 }
- { branch: 'unstable', num: 2 }
- { branch: 'libp2p', num: 1 }
- { branch: 'libp2p', num: 2 }
'metal-06.he-eu-hel1.nimbus.mainnet':
- { branch: 'stable', num: 1 }
@ -78,3 +81,5 @@ nodes_layout:
- { branch: 'testing', num: 2 }
- { branch: 'unstable', num: 1 }
- { branch: 'unstable', num: 2 }
- { branch: 'libp2p', num: 1 }
- { branch: 'libp2p', num: 2 }