From eccb234f1729eb56c16eaceb914b7c9351fa8d06 Mon Sep 17 00:00:00 2001 From: Etan Kissling Date: Mon, 25 Mar 2024 16:26:18 +0100 Subject: [PATCH] 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 --- ansible/group_vars/nimbus.prater.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ansible/group_vars/nimbus.prater.yml b/ansible/group_vars/nimbus.prater.yml index 2508802..ed635fc 100644 --- a/ansible/group_vars/nimbus.prater.yml +++ b/ansible/group_vars/nimbus.prater.yml @@ -47,8 +47,12 @@ beacon_node_network: 'prater' beacon_node_era_dir_path: '{{ nimbus_era_files_timer_path }}' 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. +# Prater is end of life and is used for research purposes on a custom branch node_name_to_branch_map: - libp2p: 'nim-libp2p-auto-bump-unstable' + libp2p: 'feat/splitview' + unstable: 'feat/splitview' + testing: 'feat/splitview' + stable: 'feat/splitview' # Ports beacon_node_discovery_port: '{{ 9000 + idx }}' beacon_node_listening_port: '{{ 9000 + idx }}'