PXE Boot Installation

Starting from version 0.2.0, Harvester can be installed automatically. This document provides an example to do the automatic installation with PXE boot.

We recommend using iPXE to perform the network boot. It has more features than the traditional PXE Boot program and is likely available in modern NIC cards. If NIC cards don’t come with iPXE firmware, iPXE firmware images can be loaded from the TFTP server first.

To see sample iPXE scripts, please visit Harvester iPXE Examples.

Prerequisite

Important

Nodes need to have at least 8G of RAM because the installer loads the full ISO file into tmpfs.

Preparing HTTP Servers

An HTTP server is required to serve boot files. Let’s assume an NGINX HTTP server’s IP is 10.100.0.10, and it serves /usr/share/nginx/html/ directory with the path http://10.100.0.10/.

Preparing Boot Files

  • Download the required files from Harvester Releases Page.

    • The ISO: harvester-<version>-amd64.iso
    • The kernel: harvester-<version>-vmlinuz-amd64
    • The initrd: harvester-<version>-initrd-amd64
    • The rootfs squashfs image: harvester-<version>-rootfs-amd64.squashfs
  • Serve the files.

    Copy or move the downloaded files to an appropriate location so they can be downloaded via the HTTP server. e.g.,

    1. sudo mkdir -p /usr/share/nginx/html/harvester/
    2. sudo cp /path/to/harvester-<version>-amd64.iso /usr/share/nginx/html/harvester/
    3. sudo cp /path/to/harvester-<version>-vmlinuz-amd64 /usr/share/nginx/html/harvester/
    4. sudo cp /path/to/harvester-<version>-initrd-amd64 /usr/share/nginx/html/harvester/
    5. sudo cp /path/to/harvester-<version>-rootfs-amd64.squashfs /usr/share/nginx/html/harvester/

Preparing iPXE boot scripts

When performing automatic installation, there are two modes:

  • CREATE: we are installing a node to construct an initial Harvester cluster.
  • JOIN: we are installing a node to join an existing Harvester cluster.

CREATE mode

Warning

Security Risks: The configuration file below contains credentials which should be kept secretly. Please do not make the configuration file publicly accessible at the moment.

Create a Harvester configuration file config-create.yaml for CREATE mode. Modify the values as needed:

  1. # cat /usr/share/nginx/html/harvester/config-create.yaml
  2. token: token
  3. os:
  4. hostname: node1
  5. ssh_authorized_keys:
  6. - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDbeUa9A7Kee+hcCleIXYxuaPksn2m4PZTd4T7wPcse8KbsQfttGRax6vxQXoPO6ehddqOb2nV7tkW2mEhR50OE7W7ngDHbzK2OneAyONYF44bmMsapNAGvnsBKe9rNrev1iVBwOjtmyVLhnLrJIX+2+3T3yauxdu+pmBsnD5OIKUrBrN1sdwW0rA2rHDiSnzXHNQM3m02aY6mlagdQ/Ovh96h05QFCHYxBc6oE/mIeFRaNifa4GU/oELn3a6HfbETeBQz+XOEN+IrLpnZO9riGyzsZroB/Y3Ju+cJxH06U0B7xwJCRmWZjuvfFQUP7RIJD1gRGZzmf3h8+F+oidkO2i5rbT57NaYSqkdVvR6RidVLWEzURZIGbtHjSPCi4kqD05ua8r/7CC0PvxQb1O5ILEdyJr2ZmzhF6VjjgmyrmSmt/yRq8MQtGQxyKXZhJqlPYho4d5SrHi5iGT2PvgDQaWch0I3ndEicaaPDZJHWBxVsCVAe44Wtj9g3LzXkyu3k= [email protected]
  7. password: rancher
  8. install:
  9. mode: create
  10. networks:
  11. harvester-mgmt: # The management bond name. This is mandatory.
  12. interfaces:
  13. - name: ens5
  14. default_route: true
  15. method: dhcp
  16. device: /dev/sda
  17. iso_url: http://10.100.0.10/harvester/harvester-<version>-amd64.iso
  18. vip: 10.100.0.100 # The VIP to access the Harvester GUI. Make sure the IP is free to use.
  19. vip_mode: static # Or dhcp, check configuration file for more information.

For machines that needs to be installed as CREATE mode, the following is an iPXE script that boots the kernel with the above config:

  1. #!ipxe
  2. kernel harvester-<version>-vmlinuz ip=dhcp net.ifnames=1 rd.cos.disable console=tty1 root=live:http://10.100.0.10/harvester/rootfs.squashfs harvester.install.automatic=true harvester.install.config_url=http://10.100.0.10/harvester/config-create.yaml
  3. initrd harvester-<version>-initrd
  4. boot

Let’s assume the iPXE script is stored in /usr/share/nginx/html/harvester/ipxe-create

NOTE If there are multiple network interfaces on the installing machine, the user can use ip=<interface>:dhcp to specify the booting interface (e.g., ip=eth1:dhcp).

JOIN mode

Warning

Security Risks: The configuration file below contains credentials which should be kept secretly. Please do not make the configuration file publicly accessible at the moment.

Create a Harvester configuration file config-join.yaml for JOIN mode. Modify the values as needed:

  1. # cat /usr/share/nginx/html/harvester/config-join.yaml
  2. server_url: https://10.100.0.130:8443
  3. token: token
  4. os:
  5. hostname: node2
  6. ssh_authorized_keys:
  7. - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDbeUa9A7Kee+hcCleIXYxuaPksn2m4PZTd4T7wPcse8KbsQfttGRax6vxQXoPO6ehddqOb2nV7tkW2mEhR50OE7W7ngDHbzK2OneAyONYF44bmMsapNAGvnsBKe9rNrev1iVBwOjtmyVLhnLrJIX+2+3T3yauxdu+pmBsnD5OIKUrBrN1sdwW0rA2rHDiSnzXHNQM3m02aY6mlagdQ/Ovh96h05QFCHYxBc6oE/mIeFRaNifa4GU/oELn3a6HfbETeBQz+XOEN+IrLpnZO9riGyzsZroB/Y3Ju+cJxH06U0B7xwJCRmWZjuvfFQUP7RIJD1gRGZzmf3h8+F+oidkO2i5rbT57NaYSqkdVvR6RidVLWEzURZIGbtHjSPCi4kqD05ua8r/7CC0PvxQb1O5ILEdyJr2ZmzhF6VjjgmyrmSmt/yRq8MQtGQxyKXZhJqlPYho4d5SrHi5iGT2PvgDQaWch0I3ndEicaaPDZJHWBxVsCVAe44Wtj9g3LzXkyu3k= [email protected]
  8. dns_nameservers:
  9. - 1.1.1.1
  10. - 8.8.8.8
  11. password: rancher
  12. install:
  13. mode: join
  14. networks:
  15. harvester-mgmt: # The management bond name. This is mandatory.
  16. interfaces:
  17. - name: ens5
  18. default_route: true
  19. method: dhcp
  20. device: /dev/sda
  21. iso_url: http://10.100.0.10/harvester/harvester-<version>-amd64.iso

Note that the mode is join and the server_url needs to be provided.

For machines that needs to be installed in JOIN mode, the following is an iPXE script that boots the kernel with the above config:

  1. #!ipxe
  2. kernel harvester-<version>-vmlinuz ip=dhcp net.ifnames=1 rd.cos.disable console=tty1 root=live:http://10.100.0.10/harvester/rootfs.squashfs harvester.install.automatic=true harvester.install.config_url=http://10.100.0.10/harvester/config-join.yaml
  3. initrd harvester-<version>-initrd
  4. boot

Let’s assume the iPXE script is stored in /usr/share/nginx/html/harvester/ipxe-join.

DHCP server configuration

Here is an example to configure the ISC DHCP server to offer iPXE scripts:

  1. option architecture-type code 93 = unsigned integer 16;
  2. subnet 10.100.0.0 netmask 255.255.255.0 {
  3. option routers 10.100.0.10;
  4. option domain-name-servers 192.168.2.1;
  5. range 10.100.0.100 10.100.0.253;
  6. }
  7. group {
  8. # create group
  9. if exists user-class and option user-class = "iPXE" {
  10. # iPXE Boot
  11. if option architecture-type = 00:07 {
  12. filename "http://10.100.0.10/harvester/ipxe-create-efi";
  13. } else {
  14. filename "http://10.100.0.10/harvester/ipxe-create";
  15. }
  16. } else {
  17. # PXE Boot
  18. if option architecture-type = 00:07 {
  19. # UEFI
  20. filename "ipxe.efi";
  21. } else {
  22. # Non-UEFI
  23. filename "undionly.kpxe";
  24. }
  25. }
  26. host node1 { hardware ethernet 52:54:00:6b:13:e2; }
  27. }
  28. group {
  29. # join group
  30. if exists user-class and option user-class = "iPXE" {
  31. # iPXE Boot
  32. if option architecture-type = 00:07 {
  33. filename "http://10.100.0.10/harvester/ipxe-join-efi";
  34. } else {
  35. filename "http://10.100.0.10/harvester/ipxe-join";
  36. }
  37. } else {
  38. # PXE Boot
  39. if option architecture-type = 00:07 {
  40. # UEFI
  41. filename "ipxe.efi";
  42. } else {
  43. # Non-UEFI
  44. filename "undionly.kpxe";
  45. }
  46. }
  47. host node2 { hardware ethernet 52:54:00:69:d5:92; }
  48. }

The config file declares a subnet and two groups. The first group is for hosts to boot with CREATE mode and the other one is for JOIN mode. By default, the iPXE path is chosen, but if it sees a PXE client, it also offers the iPXE image according to client architecture. Please prepare those images and a tftp server first.

Harvester configuration

For more information about Harvester configuration, please refer to the Harvester configuration.

Users can also provide configuration via kernel parameters. For example, to specify the CREATE install mode, the user can pass the harvester.install.mode=create kernel parameter when booting. Values passed through kernel parameters have higher priority than values specified in the config file.

UEFI HTTP Boot support

UEFI firmware supports loading a boot image from HTTP server. This section demonstrates how to use UEFI HTTP boot to load the iPXE program and perform the automatic installation.

Serve the iPXE program

Download the iPXE UEFI program from http://boot.ipxe.org/ipxe.efi and make ipxe.efi can be downloaded from the HTTP server. e.g.:

  1. cd /usr/share/nginx/html/harvester/
  2. wget http://boot.ipxe.org/ipxe.efi

The file now can be downloaded from http://10.100.0.10/harvester/ipxe.efi locally.

DHCP server configuration

If the user plans to use the UEFI HTTP boot feature by getting a dynamic IP first, the DHCP server needs to provides the iPXE program URL when it sees such a request. Here is an updated ISC DHCP server group example:

  1. group {
  2. # create group
  3. if exists user-class and option user-class = "iPXE" {
  4. # iPXE Boot
  5. if option architecture-type = 00:07 {
  6. filename "http://10.100.0.10/harvester/ipxe-create-efi";
  7. } else {
  8. filename "http://10.100.0.10/harvester/ipxe-create";
  9. }
  10. } elsif substring (option vendor-class-identifier, 0, 10) = "HTTPClient" {
  11. # UEFI HTTP Boot
  12. option vendor-class-identifier "HTTPClient";
  13. filename "http://10.100.0.10/harvester/ipxe.efi";
  14. } else {
  15. # PXE Boot
  16. if option architecture-type = 00:07 {
  17. # UEFI
  18. filename "ipxe.efi";
  19. } else {
  20. # Non-UEFI
  21. filename "undionly.kpxe";
  22. }
  23. }
  24. host node1 { hardware ethernet 52:54:00:6b:13:e2; }
  25. }

The elsif substring statement is new, and it offers http://10.100.0.10/harvester/ipxe.efi when it sees a UEFI HTTP boot DHCP request. After the client fetches the iPXE program and runs it, the iPXE program will send a DHCP request again and load the iPXE script from URL http://10.100.0.10/harvester/ipxe-create-efi.

The iPXE script for UEFI boot

It’s mandatory to specify the initrd image for UEFI boot in the kernel parameters. Here is an updated version of iPXE script for CREATE mode.

  1. #!ipxe
  2. kernel harvester-<version>-vmlinuz initrd=harvester-<version>-initrd ip=dhcp net.ifnames=1 rd.cos.disable console=tty1 root=live:http://10.100.0.10/harvester/rootfs.squashfs harvester.install.automatic=true harvester.install.config_url=http://10.100.0.10/harvester/config-create.yaml
  3. initrd harvester-<version>-initrd
  4. boot

The parameter initrd=harvester-<version>-initrd is required.