blob: 54e61d4a55e9669effe06f195ccf39bb10ab48a0 [file] [log] [blame]
Zack Williams5b5d9a72020-11-06 13:59:06 -07001---
2# pxeboot defaults/main.yml
3#
4# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
5# SPDX-License-Identifier: Apache-2.0
6
7# webserver that serves the chainload script
8pxeboot_web_server: "http://boot.example.com"
9pxeboot_web_root: "/srv/sites/boot.example.com"
10
11# dist dir, where downloaded files are stored
12pxeboot_dist_dir: "/opt/dist/pxeboot"
13
Zack Williams92f3c202021-08-24 23:04:47 -070014# List of boot images to include
15pxeboot_boot_images:
16 - memtest
Zack Williams92f3c202021-08-24 23:04:47 -070017 - debian11
18 - ubuntu1804
19 - ubuntu2004
20 - openbsd70
21
22# whether or not to include debug options
23pxeboot_image_debug: true
24
Zack Williams5b5d9a72020-11-06 13:59:06 -070025# memtest image
26# see: https://ipxe.org/appnote/memtest
27pxeboot_memtest_version: "5.01"
28pxeboot_memtest_checksum: "sha256:42b8da364fec58de1ea8d8ec8102bc3d2e7b1f10e8e63b55a2d8f7aba3fad715"
29
30# this beta version crashes on some systems...
31# pxeboot_memtest_version: "5.31b"
32# pxeboot_memtest_checksum: >
33# "sha256:ef0f31be2f7d72ceac3e9382ff8668b9ace4881eed730cc733756bfdb1cb427a"
34
35pxeboot_syslinux_version: "5.10"
36pxeboot_syslinux_checksum: "sha256:d9cd7727bfed2c0ca5bf07bb3d213286e014a78e92a6a89ac32eb906d6b7ab3f"
37
Zack Williams92f3c202021-08-24 23:04:47 -070038# Debian 11 image
39pxeboot_debian11_base_url: "https://deb.debian.org/debian/dists/bullseye/main/installer-amd64"
Zack Williams56b213a2022-06-28 15:21:51 -070040pxeboot_debian11_version: "20210731+deb11u4/images/netboot/debian-installer/amd64/"
Zack Williams92f3c202021-08-24 23:04:47 -070041
Zack Williams56b213a2022-06-28 15:21:51 -070042# checksums from version as of 2022-06-20
Zack Williams92f3c202021-08-24 23:04:47 -070043pxeboot_debian11_files:
44 - name: "linux"
Zack Williams56b213a2022-06-28 15:21:51 -070045 checksum: "sha256:c5500987889bca74fc457541fec9b55b8b6092827032821d3e351e84dcb04ff2"
Zack Williams92f3c202021-08-24 23:04:47 -070046 - name: "initrd.gz"
Zack Williams56b213a2022-06-28 15:21:51 -070047 checksum: "sha256:b16c4b475b27c9fd8abdf68d5dec6fb0107cb6645d8f75613ff54cf6fd829abc"
Zack Williams92f3c202021-08-24 23:04:47 -070048
49pxeboot_debian11_linux_args: ""
50
51pxeboot_debian11_nonfree_url: "http://cdimage.debian.org/cdimage/unofficial/non-free/"
52
53pxeboot_debian11_nonfree_files:
Zack Williams56b213a2022-06-28 15:21:51 -070054 - path: "firmware/bullseye/20220709"
Zack Williams92f3c202021-08-24 23:04:47 -070055 name: "firmware.cpio.gz"
Zack Williams56b213a2022-06-28 15:21:51 -070056 checksum: "sha256:290989bb6d96420f95bcc0c993c462b9cace2afaaf872feb7f00a2ac299ebfe1"
Zack Williamsa5a10bc2021-04-06 11:58:44 -070057
Zack Williams5b5d9a72020-11-06 13:59:06 -070058# Ubuntu 18.04 image
59pxeboot_ubuntu1804_base_url: "http://archive.ubuntu.com/ubuntu/dists/bionic-updates/main/installer-amd64"
Zack Williams92f3c202021-08-24 23:04:47 -070060pxeboot_ubuntu1804_version: "20101020ubuntu543.19/images/hwe-netboot/ubuntu-installer/amd64"
Zack Williams5b5d9a72020-11-06 13:59:06 -070061
Zack Williams92f3c202021-08-24 23:04:47 -070062# checksums from version as of 2021-11-27
Zack Williams5b5d9a72020-11-06 13:59:06 -070063pxeboot_ubuntu1804_files:
64 - name: "linux"
Zack Williams92f3c202021-08-24 23:04:47 -070065 checksum: "sha256:cf73517963037c823e4fcad52b92c20525071957f85fe9516f0652d38488db3b"
Zack Williams5b5d9a72020-11-06 13:59:06 -070066 - name: "initrd.gz"
Zack Williams92f3c202021-08-24 23:04:47 -070067 checksum: "sha256:d7609e66d70189ccf4369c3e832d4a8e6a459de28a32b9ab72f1f8eaa82869e3"
Zack Williams5b5d9a72020-11-06 13:59:06 -070068
69pxeboot_ubuntu1804_linux_args: ""
70
Zack Williams92f3c202021-08-24 23:04:47 -070071# Ubuntu 20.04 image
72pxeboot_ubuntu2004_base_url: "http://archive.ubuntu.com/ubuntu/dists/focal-updates/main/installer-amd64"
73pxeboot_ubuntu2004_version: "20101020ubuntu614.3/legacy-images/netboot/ubuntu-installer/amd64"
74
75# checksums from version as of 2021-11-27
76pxeboot_ubuntu2004_files:
77 - name: "linux"
78 checksum: "sha256:cd6e8d6114d11d668aaba86e5e16c24762723d37fa9fd5b309dc1b8a0c2685ef"
79 - name: "initrd.gz"
80 checksum: "sha256:60b10062782ebcbc6b118c2f2bb2163eee9d1e6e6bfc1633a08505e52aab7a56"
81
82pxeboot_ubuntu2004_linux_args: ""
83
84# OpenBSD 7.0 image
85pxeboot_openbsd70_base_url: "https://cdn.openbsd.org/pub/OpenBSD"
86pxeboot_openbsd70_version: "7.0/amd64"
87
88# checksums from version as of 2021-11-27
89pxeboot_openbsd70_files:
90 - name: "cd70.iso"
91 checksum: "sha256:3e3e21b1aa4448cffba103f954b3604c69361ca1fe9a4e15287fc7298171b11f"
92
Zack Williams5b5d9a72020-11-06 13:59:06 -070093# preseed config
Zack Williams5b5d9a72020-11-06 13:59:06 -070094# this should be replaced with a modular crypt string, or login will not work.
95preseed_onfadmin_pw_crypt: "!!"
96
97# this needs to be set as pubkey auth is the only remote login method
98preseed_onfadmin_ssh_pubkey: ""
99
100# list of hosts
101pxeboot_hosts:
102 - serial: "12345678"
Zack Williams92f3c202021-08-24 23:04:47 -0700103 mac: "a1:b2:c3:d4:e5:f6"
Zack Williams5b5d9a72020-11-06 13:59:06 -0700104 hostname: "host"
105 domain: "domain"