« Previous -
Version 14/54
(diff) -
Next » -
Current version
Jochen Schalanda, 05/23/2010 02:21 pm
Added links to netboot kernels for Debian Lenny.
- How do I use unattended installations (Kickstart, jumpstart, preseed)?
- TFTP
- How does Foreman manages TFTP?
- PuppetCA
- Whats inside the Kickstart / jumpstart /preseed ?
- Modifying the unattended template
- Snippets support
- Dynamic disk partition
How do I use unattended installations (Kickstart, jumpstart, preseed)?¶
Foreman automates network boot processes using PXEboot (or native Solaris net:dhcp)
At this time, Foreman does not support DHCP and DNS alteration, you would need to do those steps manually. DHCP/DNS management. Coming soon
TFTP¶
Foreman has currently limited support for TFTP- that means it require the TFTP server to be accessible via the local file system.
future versions of Foreman would allow remote TFTP servers as well.
make sure you add into your config/settings.yml
:tftppath: /var/lib/tftpboot/pxelinux.cfg
replace the value with your actual TFTP directory and ensure that the user which executes Foreman have write access.
How does Foreman manages TFTP?¶
When clicking on the Build button (in the host list), Foreman would generate a link which will be automatically read by pxelinux,
This link would point to a predefined syslinux(pxelinux) boot file which would be based on the Operating System used.
Note:- if you require the link to point to different PXE files based on serial console variables, adding '0,19200n8' in the serial field of a host will create a different symbolic link.
after a successful OS installation, that link will be removed, and your default PXE settings will be served.
The idea behind it is to set the boot order on each host to always boot from network, and then change the settings via Foreman.
This avoids the need to press F12 on each machine just to reinstall it, Clicking on Build in Foreman will trigger a host re-installation upon the next server reboot if default boot order is PXE.
Examples:
CentOS 5 32bit:
default linux label linux kernel boot/centos-5-32.vmlinuz append initrd=boot/centos-5-32.initrd.img ks=http://foremanhost/unattended/kickstart ksdevice=eth0 network kssendmac
Ubuntu 10.04 64bit:
default preseed label preseed kernel ubuntu/lucid/x86_64/linux append initrd=ubuntu/lucid/x86_64/initrd.gz ramdisk_size=10800 root=/dev/rd/0 rw auto interface=auto url=http://foreman.example.net/unattended/preseed hostname=unassigned-hostname locale=en_US console-setup/ask_detect=false console-setup/layout=USA console-setup/variant=USA DEBCONF_PRIORITY=criticalTweakable options:
interface: the network interface on which the DHCP client should run. Set toautofor automatic detection or the specific interface (eth0,eth1, ...) if it doesn't work for you.url: The URL to the preseed file provided by Foreman.locale: The locale used during the installation.log_host=loghost.example.comandlog_port=1234(if the syslogd doesn't listen on514/udp) if there is a central log host in your network.
- Debian 5.0 (Lenny) 32bit
- Debian 5.0 (Lenny) 64bit
- Ubuntu 8.04 LTS (Hardy Heron) 32bit
- Ubuntu 8.04 LTS (Hardy Heron) 64bit
- Ubuntu 9.10 (Karmic Koala) 32bit
- Ubuntu 9.10 (Karmic Koala) 64bit
- Ubuntu 10.04 LTS (Lucid Lynx) 32bit
- Ubuntu 10.04 LTS (Lucid Lynx) 64bit
PuppetCA¶
Foreman will enable host autosign during provisioning time, that means, the user which executes Foreman must have:
1. write access to /etc/puppet/autosign.conf
2. sudo access to run puppetca
Once a host (which is enabled for build) is requesting a kickstart/jumpstart etc than an entry would be created in the autosign.conf file.
Each operating system will run puppetd after the OS installation but before the first reboot, this will acquire the puppet certificate, then the host will notify Foreman that it has finished the installation, and Foreman will remove the entry from the autosign file automatically.
Whats inside the Kickstart / jumpstart /preseed ?¶
These files are all generated dynamically based on the setting of each host in Foreman, things like partition tables and root password can be unique per server.
if you want to see the kickstart/preseed etc you may use the spoof parameter, just point your browser to:
http://foremanhost:3000/unattended/kickstart?spoof=123.321.123.321
- 123.321.123.321 is the hosts IP Address (the one you want to build).
- usually you want to see the page source, the browser might display the file in html which will result in hard to read output.
- if you are using passenger please remove the ":3000" from the URL.
Modifying the unattended template¶
You probably want to do minor teaks to your kickstart/jumpstart/preseed template (yeah the same kind puppet uses).
the template for can be found at:
RedHat based installation
app/view/unattended/kickstart.rhtml
Debian/Ubuntu installations
app/view/unattended/preseed.rhtml
and a finish script
app/view/unattended/preseed_finish.rhtml
Snippets support¶
as of version 0.1-2 snippets support was added, for reusable code that be shared between operating systems deployments (e.g. puppet.conf).
They are pure ERB templates (same as puppet templates) and could be modified at the following directory:
app/views/unattended/snippets
in order to create a new snippet place it in that the same directory and prefix it with a "_". later you can call it from the existing templates:
<%= snippets "vmware" -%>
Dynamic disk partition¶
It is possible to use a script (e.g a kickstart post script) instead of a static partition table.
see Dynamic disk partioning
