mainnet,sepolia,holesky: fix format of extra_flags

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-06-12 00:34:00 +02:00
parent 3d961e404d
commit 0ac7766cb1
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
5 changed files with 7 additions and 7 deletions

View File

@ -75,7 +75,7 @@ beacon_node_network: 'holesky'
beacon_node_repo_branch: '{{ node_name_to_branch_map.get(node.branch, node.branch) }}'
# Tuning
beacon_node_history_retention: '{{ "archive" if node.get("public_api") else node.get("history", "prune") }}'
beacon_node_extra_flags: '{{ node.extra_flags if node.extra_flags is defined else [] }}'
beacon_node_extra_flags: '{{ node.extra_flags if node.extra_flags is defined else {} }}'
# We map short names to branches to avoid too long service names.
node_name_to_branch_map:
libp2p: 'nim-libp2p-auto-bump-unstable'

View File

@ -69,7 +69,7 @@ beacon_node_validator_monitor_details: '{{ node.public_api is not defined or not
beacon_node_dist_validators_enabled: false
# Excellent stress test and good service to the community.
beacon_node_subscribe_all: true
beacon_node_extra_flags: '{{ node.extra_flags if node.extra_flags is defined else [] }}'
beacon_node_extra_flags: '{{ node.extra_flags if node.extra_flags is defined else {} }}'
# Light client data
beacon_node_light_client_data_enabled: '{{ (node.public_api is defined and node.public_api) }}'
beacon_node_light_client_data_serve: true

View File

@ -32,7 +32,7 @@ beacon_node_service_name: 'beacon-node-{{ beacon_node_network }}-{{ node.branch
beacon_node_network: 'sepolia'
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_extra_flags: '{{ node.extra_flags if node.extra_flags is defined else [] }}'
beacon_node_extra_flags: '{{ node.extra_flags if node.extra_flags is defined else {} }}'
beacon_node_payload_builder_enabled: '{{ node.get("payload_builder", false) }}'
beacon_node_payload_builder_url: 'https://boost-relay-sepolia.flashbots.net/ '
# Updates

View File

@ -35,7 +35,7 @@
- name: infra-role-oauth-proxy
src: git@github.com:status-im/infra-role-oauth-proxy.git
version: e984edd9e2c207896e5f47fd0418a1bc87b9e027
version: 9119f7af1feb809b28fcf68ce044795affe1aa76
scm: git
- name: infra-role-consul-service
@ -45,7 +45,7 @@
- name: infra-role-beacon-node-linux
src: git@github.com:status-im/infra-role-beacon-node-linux.git
version: 5f83a05f673826e15fb1ceddd288cae7ab8c74b9
version: 89e1b2a0aaacba8bde7a933c2fa1e38d7e23bb90
scm: git
- name: infra-role-beacon-node-windows

View File

@ -49,5 +49,5 @@ nodes_layout:
- { branch: 'stable', num: 1 }
- { branch: 'libp2p', num: 1 }
- { branch: 'libp2p', num: 2 }
- { branch: 'libp2p', num: 3, extra_flags: ['--debug-enable-yamux=true'] }
- { branch: 'libp2p', num: 4, extra_flags: ['--debug-enable-yamux=true'] }
- { branch: 'libp2p', num: 3, extra_flags: {'debug-enable-yamux': true} }
- { branch: 'libp2p', num: 4, extra_flags: {'debug-enable-yamux': true} }