From ff8b2919ee4a3eb3fa7bac7d5262b9aa324f5269 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 14 Jun 2025 09:35:16 -0700 Subject: [PATCH] dhcp: add openshift control plane vms to rdu3 dhcpd config Signed-off-by: Kevin Fenzi --- .../dhcpd.conf.noc01.rdu3.fedoraproject.org | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/roles/dhcp_server/files/dhcpd.conf.noc01.rdu3.fedoraproject.org b/roles/dhcp_server/files/dhcpd.conf.noc01.rdu3.fedoraproject.org index b248b29eb7..6afc2e1c26 100644 --- a/roles/dhcp_server/files/dhcpd.conf.noc01.rdu3.fedoraproject.org +++ b/roles/dhcp_server/files/dhcpd.conf.noc01.rdu3.fedoraproject.org @@ -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; +}