nimbus.prater: use custom research branch

As prater is approaching end of life, it is suitable for testing edge
cases with partitioned network. To avoid interfering with other networks
a separate branch should be tracked instead.

Signed-off-by: Etan Kissling <etan@status.im>
This commit is contained in:
Etan Kissling 2024-03-25 16:26:18 +01:00
parent 10ff179299
commit eccb234f17
No known key found for this signature in database
GPG Key ID: B21DA824C5A3D03D
1 changed files with 5 additions and 1 deletions

View File

@ -47,8 +47,12 @@ beacon_node_network: 'prater'
beacon_node_era_dir_path: '{{ nimbus_era_files_timer_path }}' beacon_node_era_dir_path: '{{ nimbus_era_files_timer_path }}'
beacon_node_repo_branch: '{{ node_name_to_branch_map.get(node.branch, node.branch) }}' beacon_node_repo_branch: '{{ node_name_to_branch_map.get(node.branch, node.branch) }}'
# We map short names to branches to avoid too long service names. # We map short names to branches to avoid too long service names.
# Prater is end of life and is used for research purposes on a custom branch
node_name_to_branch_map: node_name_to_branch_map:
libp2p: 'nim-libp2p-auto-bump-unstable' libp2p: 'feat/splitview'
unstable: 'feat/splitview'
testing: 'feat/splitview'
stable: 'feat/splitview'
# Ports # Ports
beacon_node_discovery_port: '{{ 9000 + idx }}' beacon_node_discovery_port: '{{ 9000 + idx }}'
beacon_node_listening_port: '{{ 9000 + idx }}' beacon_node_listening_port: '{{ 9000 + idx }}'