# foreman_bootdisk Foreman's network provisioning model is usually based on PXE, which requires DHCP and TFTP services. However many users don't have these available, so foreman_bootdisk provides both a per-host and generic boot disks to enable deployments in datacentres without these capabilities. Boot images are written as hybrid ISO images (usable as ISOs or USB disks), and booted either from physical media or virtual disk/CDROM (via a lights out management device). # Installation Please see the Foreman wiki for appropriate instructions: * [Foreman: How to Install a Plugin](http://projects.theforeman.org/projects/foreman/wiki/How_to_Install_a_Plugin) The gem name is "foreman_bootdisk". Run `foreman-rake db:migrate` after installation. RPM users can install the "ruby193-rubygem-foreman_bootdisk" or "rubygem-foreman_bootdisk" packages. ## Dependencies * iPXE images are required * syslinux is required * mkisofs and isohybrid are required gPXE images are unsupported due to lack of initrd support, but the name will crop up as Foreman's script support is still named after the project. # Usage ## Configuration Some configuration is set under More>Settings>Bootdisk in the Foreman UI. * `bootdisk_ipxe_dir` points to the directory containing ipxe.lkrn * `bootdisk_syslinux_dir` points to the directory containing syslinux images * `bootdisk_host_template` is the name of the per-host boot disk template * `bootdisk_generic_host_template` is the name of the generic boot disk template For per-host images, ensure host IP addresses and subnets are populated, and the subnet's gateway, subnet mask and DNS resolver(s) are correctly configured under More>Provisioning>Subnets in Foreman. To permit access to images for non-admin users, add the "Boot disk access" role to a user or the "download_bootdisk" permission to an existing role. ### Templates The templates used on the boot disks themselves are read-only so they can be updated in new versions of the plugin. To customise, copy the contents to a new template and set the name in More>Settings>Bootdisk. An OS gPXE provisioning template is required, preferably "Kickstart boot disk gPXE" (as supplied by this plugin). Ensure the OSes are ticked under the Associations tab and that the gPXE template is selected under the Templates tab on the OS. Lastly, the OS provision template (i.e. kickstart/preseed) should provide the static IP details required to configure the OS. For a kickstart file, the following configuration will do this: network --bootproto <%= @static ? "static" : "dhcp" %> --hostname <%= @host %> <%= "--ip=#{@host.ip} --netmask=#{@host.subnet.mask} --gateway=#{@host.subnet.gateway} --nameserver=#{@host.subnet.dns_primary},#{@host.subnet.dns_secondary}" if @static %> ## Available images The image types have trade-offs, but are all meant for environments without total control over the network infrastructure - so no DHCP reservations or TFTP settings are needed.
Type | Generic | DHCP required | DHCP reservation | Pre-register host |
---|---|---|---|---|
Per-host image | No | No | No | Yes |
Generic image | Yes | Yes | No | Yes |