This commit is contained in:
2024-07-03 15:48:10 +00:00
parent 9a4bbb05a8
commit 6413ee32c2
25 changed files with 178 additions and 5 deletions

View File

@@ -1,3 +1,16 @@
---
# Host vars for alpha-control-plane
os: debin
network_interfaces: "
# The primary network interface
auto eno8303
iface eno8303 inet static
address 10.0.0.2/16
gateway 10.0.0.1
iface eno8303 inet6 static
address fc00:6572:6963:a::2/64
gateway fc00:6572:6963:a::1
# The secondary network interface
allow-hotplug eno8403
iface eno8403 inet dhcp
"

View File

@@ -1,3 +1,16 @@
---
# Host vars for alpha-worker-0
os: debian
network_interfaces: "
# The primary network interface
auto eno1np0
iface eno1np0 inet static
address 10.0.0.3/16
gateway 10.0.0.1
iface eno1np0 inet6 static
address fc00:6572:6963:a::3/64
gateway fc00:6572:6963:a::1
# The secondary network interface
allow-hotplug eno2np1
iface eno2np1 inet dhcp
"