nimbus.sepolia: add IPv6 addresses and netplan role

https://github.com/status-im/infra-nimbus/issues/176

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-03-20 13:45:40 +01:00
parent 90edd3c50e
commit 9ef7a7a8bf
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
3 changed files with 14 additions and 0 deletions

View File

@ -16,6 +16,7 @@
hosts:
- nimbus-sepolia-linux
roles:
- { role: update-netplan, tags: [ update-netplan ], when: ansible_system == 'Linux' }
- { role: infra-role-open-ports, tags: [ open-ports ] }
- { role: infra-role-smart-metrics, tags: [ smart-metrics ] }
- { role: redirect-ports, tags: [ redirect-ports ] }

View File

@ -0,0 +1,12 @@
# This is the network config written by 'subiquity'
network:
ethernets:
eno1:
addresses:
- 185.181.230.77/24
- 2a0a:d580:40:60::125/64
gateway4: 185.181.230.1
gateway6: 2a0a:d580:40:60::1
nameservers:
addresses: [ 194.33.40.10, 1.1.1.1 ]
version: 2

View File

@ -17,3 +17,4 @@ for FILE in geth-*.holesky.yml; do update_yaml "${FILE}"; done
for FILE in erigon-*.holesky.yml; do update_yaml "${FILE}"; done
for FILE in neth-*.holesky.yml; do update_yaml "${FILE}"; done
for FILE in linux-*.mainnet.yml; do update_yaml "${FILE}"; done
for FILE in linux-*.sepolia.yml; do update_yaml "${FILE}"; done