dhcp: add openshift control plane vms to rdu3 dhcpd config

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi
2025-06-14 09:35:16 -07:00
parent fe975ec339
commit ff8b2919ee

View File

@@ -1081,3 +1081,25 @@ host backup01 {
option routers 10.16.163.254;
option subnet-mask 255.255.255.0;
}
host ocp01 {
fixed-address 10.16.163.120;
hardware ethernet 52:54:00:9c:3e:31;
option host-name "ocp03.ocp.rdu3.fedoraproject.org";
option routers 10.16.163.254;
option subnet-mask 255.255.255.0;
}
host ocp02 {
fixed-address 10.16.163.121;
hardware ethernet 52:54:00:b2:f0:ac;
option host-name "ocp03.ocp.rdu3.fedoraproject.org";
option routers 10.16.163.254;
option subnet-mask 255.255.255.0;
}
host ocp03 {
hardware ethernet 52:54:00:a9:68:f8;
fixed-address 10.16.163.122;
option host-name "ocp03.ocp.rdu3.fedoraproject.org";
option routers 10.16.163.254;
option subnet-mask 255.255.255.0;
}