From abe15b05dbc1cf425a039e5c40b2d0e8d65ba9fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 25 Aug 2021 15:26:42 +0200 Subject: [PATCH] geth: explicitly open RPC and WebSocket ports to VPN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since geth role now defaults to using `localhost` for both. Signed-off-by: Jakub SokoĊ‚owski --- ansible/group_vars/nimbus-geth-goerli.yml | 2 ++ ansible/group_vars/nimbus-geth-mainnet.yml | 2 ++ ansible/requirements.yml | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ansible/group_vars/nimbus-geth-goerli.yml b/ansible/group_vars/nimbus-geth-goerli.yml index 9ebeb63..3beae94 100644 --- a/ansible/group_vars/nimbus-geth-goerli.yml +++ b/ansible/group_vars/nimbus-geth-goerli.yml @@ -23,7 +23,9 @@ geth_expo_source_data_path: '{{ geth_cont_vol }}/data' # Ports geth_port: 30303 +geth_rpc_addr: '0.0.0.0' geth_rpc_port: 8545 +geth_websocket_addr: '0.0.0.0' geth_websocket_port: 8546 geth_expo_cont_port: 9200 diff --git a/ansible/group_vars/nimbus-geth-mainnet.yml b/ansible/group_vars/nimbus-geth-mainnet.yml index 71381ad..b52453f 100644 --- a/ansible/group_vars/nimbus-geth-mainnet.yml +++ b/ansible/group_vars/nimbus-geth-mainnet.yml @@ -24,7 +24,9 @@ geth_expo_source_data_path: '{{ geth_cont_vol }}/data' # Ports geth_port: 30303 +geth_rpc_addr: '0.0.0.0' geth_rpc_port: 8545 +geth_websocket_addr: '0.0.0.0' geth_websocket_port: 8546 geth_expo_cont_port: 9200 diff --git a/ansible/requirements.yml b/ansible/requirements.yml index 2985c8d..463e2aa 100644 --- a/ansible/requirements.yml +++ b/ansible/requirements.yml @@ -101,7 +101,7 @@ - name: infra-role-geth src: git@github.com:status-im/infra-role-geth.git - version: bb265a41b690e5efcedba5b453e17997d72c4ac1 + version: 87b6be842f1cc4f69ac1f064150c9568aebcdb69 scm: git - name: infra-role-geth-exporter