Skip to content

Commit

Permalink
feat: revert everthing back but override cidr to be fully unmasked
Browse files Browse the repository at this point in the history
  • Loading branch information
ckartik committed Aug 28, 2024
1 parent 561acb8 commit b2e9d88
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ job "{{ job.name }}" {
{% if job.env['type'] != 'signer' %}
PUBLIC_NODE_IP="{{ job.env['public_ip'] }}"
{% endif %}
NET_RESTRICT="0.0.0.0/32"
GETH_NODE_TYPE="{{ job.env['type'] }}"
GETH_VERBOSITY={{ job.env.get('log-verbosity', '3') }}
GETH_LOG_FORMAT="{{ job.env.get('log-format', 'json') }}"
Expand Down
12 changes: 12 additions & 0 deletions infrastructure/nomad/playbooks/variables/profiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:
env:
ip: 0.0.0.0
public_ip: 0.0.0.0
net_restrict: 0.0.0.0/0
type: bootnode
mev_commit_geth_signer_node1: &mev_commit_geth_signer_node1_job
name: mev-commit-geth-signer-node1
Expand All @@ -75,6 +76,8 @@ jobs:
p2p:
to: 30311
env:
ip: 0.0.0.0
net_restrict: 0.0.0.0/0
type: signer

mev_commit_geth_signer_node2: &mev_commit_geth_signer_node2_job
Expand All @@ -92,6 +95,8 @@ jobs:
p2p:
to: 30312
env:
ip: 0.0.0.0
net_restrict: 0.0.0.0/0
type: signer

mev_commit_geth_signer_node3: &mev_commit_geth_signer_node3_job
Expand All @@ -109,6 +114,12 @@ jobs:
p2p:
to: 30313
env:
ip: 0.0.0.0
net_restrict: 0.0.0.0/0
type: signer
env:
ip: 0.0.0.0
net_restrict: 0.0.0.0/0
type: signer

mev_commit_geth_member_node: &mev_commit_geth_member_node_job
Expand All @@ -131,6 +142,7 @@ jobs:
env:
ip: 0.0.0.0
public_ip: "{{ ansible_facts['default_ipv4']['address'] }}"
net_restrict: 0.0.0.0/0
type: member
sync_mode: snap

Expand Down

0 comments on commit b2e9d88

Please sign in to comment.