firewall: remove obsolete settings for open-ports

We now call `open-ports` role inside of `beacon-node` roles.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2021-08-23 16:51:26 +02:00
parent e0d70f46f3
commit 2a781d70e8
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
2 changed files with 0 additions and 9 deletions

View File

@ -49,11 +49,3 @@ beacon_node_max_peers: 320
# resource limits # resource limits
beacon_node_mem_limit: '{{ (ansible_memtotal_mb * 0.60) | int }}' beacon_node_mem_limit: '{{ (ansible_memtotal_mb * 0.60) | int }}'
beacon_node_mem_reserve: '{{ (ansible_memtotal_mb * 0.4) | int }}' beacon_node_mem_reserve: '{{ (ansible_memtotal_mb * 0.4) | int }}'
# Open Ports
open_ports_default_comment: 'Beacon Node'
open_ports_default_chain: 'SERVICES'
open_ports_list:
- { port: '{{ beacon_node_listening_port }}', protocol: 'tcp' }
- { port: '{{ beacon_node_discovery_port }}', protocol: 'udp' }
- { port: '{{ beacon_node_metrics_port }}', chain: 'VPN', ipset: 'metrics.hq' }

View File

@ -13,6 +13,5 @@
become: true become: true
hosts: 'nimbus-mainnet-small' hosts: 'nimbus-mainnet-small'
roles: roles:
- { role: open-ports, tags: [ open-ports ] }
- { role: get-geth-web3-urls, tags: [ get-geth-web3-urls ] } - { role: get-geth-web3-urls, tags: [ get-geth-web3-urls ] }
- { role: infra-role-beacon-node-linux, tags: [ beacon-node ] } - { role: infra-role-beacon-node-linux, tags: [ beacon-node ] }