Files
Factory/metal3-chart/charts/ironic
Nicolas Belouin 780d38b356
All checks were successful
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in 2h41m20s
Install both ramdisks in the ipa downloader
- Make the different ipa-ramdisk packages installable side by side
- Clean the ipa-downloader Dockerfile from what seems to be unneeded
- Get both images in
- Use zstd instead of xz for better speed
- Check sums before redoing certs integration
- Add value to metal3 chart to select between architectures

Signed-off-by: Nicolas Belouin <nicolas.belouin@suse.com>
2025-02-28 14:01:54 +01:00
..
2024-10-22 10:53:04 +03:00
2025-02-12 09:12:49 +00:00
2024-10-22 10:53:04 +03:00
2025-02-12 09:12:49 +00:00

How to Enable Provisioning Network

By default PXE boot functionality is disabled, so deployments via e.g redfish-virtualmedia may be performed without any dedicated provisioning network.

For PXE boot a dedicated network is required, in this case we run a dnsmasq instance to provide DHCP and require a dedicated NIC for connectivity to the provisioning network on each host.

To enable this mode you must provide the following additional configuration (note the values are examples and will depend on your environment):

global:
  enable_dnsmasq: true
  enable_pxe_boot: true
  dnsmasqDefaultRouter: 192.168.21.254
  dnsmasqDNSServer: 192.168.20.5
  dhcpRange: 192.168.20.20,192.168.20.80
  provisioningInterface: ens4
  provisioningIP: 192.168.20.5

Note that these values must not conflict with your controlplane or other networks otherwise unexpected behavior is likely - a dedicated physical network is required in this configuration.