nimbus.sepolia: enable SMART metrics service

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-05-17 18:08:22 +02:00
parent c15e1ea358
commit 2e14ecc79e
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
2 changed files with 8 additions and 1 deletions

View File

@ -76,6 +76,11 @@ validator_client_dist_validators_enabled: '{{ node.start is defined and node.end
validator_client_dist_validators_start: '{{ (not node.validator_client) | ternary(0, node.start) | mandatory }}' validator_client_dist_validators_start: '{{ (not node.validator_client) | ternary(0, node.start) | mandatory }}'
validator_client_dist_validators_end: '{{ (not node.validator_client) | ternary(0, node.end) | mandatory }}' validator_client_dist_validators_end: '{{ (not node.validator_client) | ternary(0, node.end) | mandatory }}'
# Open Ports
open_ports_default_chain: 'VPN'
open_ports_list:
- { port: '{{ smart_metrics_listen_port }}', ipset: 'metrics.hq', comment: 'SMART Metrics' }
nodes_layout: nodes_layout:
'linux-01.he-eu-hel1.nimbus.sepolia': 'linux-01.he-eu-hel1.nimbus.sepolia':
- { start: 0, end: 25, validator_client: true } - { start: 0, end: 25, validator_client: true }

View File

@ -15,6 +15,8 @@
hosts: hosts:
- nimbus-sepolia-linux - nimbus-sepolia-linux
roles: roles:
- { role: open-ports, tags: [ open-ports ] }
- { role: smart-metrics, tags: [ smart-metrics ] }
- { role: redirect-ports, tags: [ redirect-ports ] } - { role: redirect-ports, tags: [ redirect-ports ] }
tasks: tasks:
- include_role: name=infra-role-geth - include_role: name=infra-role-geth