From 53b876fa3cace4a663ca33c48cdbb93680b2005b Mon Sep 17 00:00:00 2001 From: David Galloway Date: Thu, 13 May 2021 10:53:50 -0400 Subject: [PATCH] cobbler: Add CentOS 8 Stream ISO NOTE: The initrd and vmlinuz in this ISO do not work together. Filed https://bugs.centos.org/view.php?id=18188. I also had to add `centos-stream` to the distro-signatures.json file for Cobbler 2.6 to recognize the distro. Other than that, this works fine adding Stream to our infra as-is. Signed-off-by: David Galloway --- cobbler.yml | 1 + roles/cobbler_profile/defaults/main.yml | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/cobbler.yml b/cobbler.yml index ed4ac70e..834ee4f7 100644 --- a/cobbler.yml +++ b/cobbler.yml @@ -40,6 +40,7 @@ - { role: cobbler_profile, distro_name: CentOS-8.1-aarch64, tags: ['centos8.1-aarch64'] } - { role: cobbler_profile, distro_name: CentOS-8.2-x86_64, tags: ['centos8.2'] } - { role: cobbler_profile, distro_name: CentOS-8.3-x86_64, tags: ['centos8.3'] } + - { role: cobbler_profile, distro_name: CentOS-8.stream-x86_64, tags: ['centos8.stream'] } - { role: cobbler_profile, distro_name: Ubuntu-12.04-server-x86_64, tags: ['ubuntu-precise'] } - { role: cobbler_profile, distro_name: Ubuntu-14.04-server-x86_64, tags: ['ubuntu-trusty'] } - { role: cobbler_profile, distro_name: Ubuntu-15.04-server-x86_64, tags: ['ubuntu-vivid'] } diff --git a/roles/cobbler_profile/defaults/main.yml b/roles/cobbler_profile/defaults/main.yml index dab84fb2..2d7f76c0 100644 --- a/roles/cobbler_profile/defaults/main.yml +++ b/roles/cobbler_profile/defaults/main.yml @@ -116,6 +116,10 @@ distros: iso: http://mirror.linux.duke.edu/pub/centos/8.3.2011/isos/x86_64/CentOS-8.3.2011-x86_64-dvd1.iso sha256: aaf9d4b3071c16dbbda01dfe06085e5d0fdac76df323e3bbe87cce4318052247 kickstart: cephlab_rhel.ks + "CentOS-8.stream-x86_64": + iso: http://packages.oit.ncsu.edu/centos/8-stream/isos/x86_64/CentOS-Stream-8-x86_64-20210506-dvd1.iso + sha256: 73940ae1005b1c89e11c5f4f8c11ade5cc6ef52be067dea448a54bec81ac2c17 + kickstart: cephlab_rhel.ks "Ubuntu-12.04-server-x86_64": iso: "http://releases.ubuntu.com/12.04/ubuntu-12.04.5-server-amd64.iso" sha256: af224223de99e2a730b67d7785b657f549be0d63221188e105445f75fb8305c9 -- 2.47.3