enable validator monitoring flags for unstable nodes

Once the next release is out we can drop the `unstable` conditionals.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-01-14 13:26:43 +01:00
parent e00443d6e2
commit c7d86c0990
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
4 changed files with 18 additions and 3 deletions

View File

@ -19,6 +19,9 @@ beacon_node_firewall_libp2p_open: '{{ node.get("open_libp2p_ports", true) }}'
beacon_node_build_frequency: '*-*-* {{ 12 + port_offset }}:00:00' beacon_node_build_frequency: '*-*-* {{ 12 + port_offset }}:00:00'
# Tuning # Tuning
beacon_node_threads: '{{ (node.branch == "testing") | ternary(4, 1) }}' beacon_node_threads: '{{ (node.branch == "testing") | ternary(4, 1) }}'
# Monitoring
beacon_node_validator_monitor_auto: '{{ node.branch == "unstable" }}'
beacon_node_validator_monitor_totals: false
# Mainnet validators run on a separate fleet. # Mainnet validators run on a separate fleet.
beacon_node_dist_validators_enabled: false beacon_node_dist_validators_enabled: false
# Bootnodes should subscribe to all subnets # Bootnodes should subscribe to all subnets

View File

@ -16,6 +16,12 @@ beacon_node_firewall_libp2p_open: '{{ node.get("open_libp2p_ports", true) }}'
# Tuning # Tuning
beacon_node_max_peers: 300 beacon_node_max_peers: 300
beacon_node_threads: '{{ (node.branch == "testing") | ternary(4, 1) }}' beacon_node_threads: '{{ (node.branch == "testing") | ternary(4, 1) }}'
# Monitoring
beacon_node_validator_monitor_auto: '{{ node.branch == "unstable" }}'
beacon_node_validator_monitor_totals: >-
{{ node.branch == "unstable" and
node.end is defined and
(node.end - node.start) > 64 }}
# Builds # Builds
beacon_node_build_frequency: '{{ node.get("build_freq", "daily") }}' beacon_node_build_frequency: '{{ node.get("build_freq", "daily") }}'
beacon_node_build_start_time: '{{ node.get("build_start", omit) }}' beacon_node_build_start_time: '{{ node.get("build_start", omit) }}'

View File

@ -13,6 +13,12 @@ beacon_node_rpc_port: '{{ 9900 + port_offset }}'
# Tuning # Tuning
beacon_node_max_peers: 250 beacon_node_max_peers: 250
beacon_node_threads: '{{ (node.branch == "testing") | ternary(4, 1) }}' beacon_node_threads: '{{ (node.branch == "testing") | ternary(4, 1) }}'
# Monitoring
beacon_node_validator_monitor_auto: '{{ node.branch == "unstable" }}'
beacon_node_validator_monitor_totals: >-
{{ node.branch == "unstable" and
node.end is defined and
(node.end - node.start) > 64 }}
# Builds # Builds
beacon_node_build_frequency: '{{ node.build_frequency }}' beacon_node_build_frequency: '{{ node.build_frequency }}'
# Validators from nimbus-private repo # Validators from nimbus-private repo

View File

@ -46,17 +46,17 @@
- name: infra-role-beacon-node-linux - name: infra-role-beacon-node-linux
src: git@github.com:status-im/infra-role-beacon-node-linux.git src: git@github.com:status-im/infra-role-beacon-node-linux.git
version: d993d06dc2d05fcad881233a65f8d9cc6c26d844 version: 93480d55dfead7ea54e17d8efd4affdd7ec095ee
scm: git scm: git
- name: infra-role-beacon-node-windows - name: infra-role-beacon-node-windows
src: git@github.com:status-im/infra-role-beacon-node-windows.git src: git@github.com:status-im/infra-role-beacon-node-windows.git
version: f6dd9dd6440ebf06da859ff6ea04d8d8fd933b48 version: bcca6097e137fa75b4f7dd25d6f97f58ace1e160
scm: git scm: git
- name: infra-role-beacon-node-macos - name: infra-role-beacon-node-macos
src: git@github.com:status-im/infra-role-beacon-node-macos.git src: git@github.com:status-im/infra-role-beacon-node-macos.git
version: f4fd894c3ed1ebe570320f64106ae56058485e08 version: 6613d2a29863c3519b0a547e210fefc5aa58bff0
scm: git scm: git
- name: infra-role-nimbus-eth1 - name: infra-role-nimbus-eth1