From 2a781d70e8dc00b7dde61fda067f14372040f53c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 23 Aug 2021 16:51:26 +0200 Subject: [PATCH] firewall: remove obsolete settings for open-ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We now call `open-ports` role inside of `beacon-node` roles. Signed-off-by: Jakub SokoĊ‚owski --- ansible/group_vars/all.yml | 8 -------- ansible/mainnet.yml | 1 - 2 files changed, 9 deletions(-) diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml index 67b766c..e4ebe5a 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -49,11 +49,3 @@ beacon_node_max_peers: 320 # resource limits beacon_node_mem_limit: '{{ (ansible_memtotal_mb * 0.60) | 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' } diff --git a/ansible/mainnet.yml b/ansible/mainnet.yml index a346686..ba181dd 100644 --- a/ansible/mainnet.yml +++ b/ansible/mainnet.yml @@ -13,6 +13,5 @@ become: true hosts: 'nimbus-mainnet-small' roles: - - { role: open-ports, tags: [ open-ports ] } - { role: get-geth-web3-urls, tags: [ get-geth-web3-urls ] } - { role: infra-role-beacon-node-linux, tags: [ beacon-node ] }