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_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:
'linux-01.he-eu-hel1.nimbus.sepolia':
- { start: 0, end: 25, validator_client: true }

View File

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