-
Notifications
You must be signed in to change notification settings - Fork 179
XCAT_2.19_Release_Notes
This release carries two main improvements: New genesis is now built with OpenEmbedded and shipped as packages in a dedicated repository tree with multiple architectures. And the RISC-V Architecture (riscv64) is now supported for both management and compute nodes.
The network-boot image is no longer assembled from the build host. OpenEmbedded builds it from a pinned recipe, so the image is reproducible and does not inherit the kernel, libraries or locale of whatever machine ran the build. The old behaviour produced an image whose contents depended on the builder, which is why an Ubuntu Genesis could reach a node without a DHCP client.
The images ship as packages rather than as a build step. mknb installs an exported image instead
of assembling one, so a management node needs no build toolchain to serve netboot.
Published images, one package per architecture:
xCAT-genesis-openembedded-{x86_64,x86,ppc64le,ppc64,aarch64,armv7hf,riscv64}
- #7721 build images with OpenEmbedded
- #7724
mknbinstalls exported Genesis images - #7769 consume packaged OpenEmbedded images
- #7722 render Genesis boot paths correctly
- #7753 compress with xz when lzma is absent
- #7790 configure eligible secondary NICs with DHCP
- #7665 find the boot NIC over InfiniBand (IPoIB)
The old Genesis builder still ships, but is considered deprecated. It will be removed in the future.
riscv64 nodes can be managed and provisioned on EL10 and on Ubuntu 24.04 and 26.04.
- #7773 riscv64 nodes on EL10
- #7821 riscv64 management and provisioned nodes on Ubuntu 24.04 and 26.04
- #7763 boot the riscv64 image on ACPI firmware
- #7584
xCAT-releasepackage for DNF systems - #7774 source-only build mode
- #7829 install the osimage pkglist during the Subiquity autoinstall
- #7786 policy rules can name Unix groups
- #7780 confluent exports the switch topology of each node
- #7741
genpdupdutype for generic SNMP PDUs (PDU2-MIB) - #7588 configurable NFS root options for statelite images
- #7590 indexed host lookups make
makehostsfaster - #7597 HMAC-SHA256 by default on new EL and Ubuntu sites
- #7772 postscripts load package utilities
Ubuntu 26.04 LTS is now fully supported.
- #7756 make xCAT work on Ubuntu 26.04
- #7761 the Subiquity diskful install never completes
- #7831
nodesetcannot boot an Ubuntu POWER install from live media - #7762
configethconfigures nothing on netplan-rendered nodes - #7760
makentpfails on a stock Ubuntu MN - #7758
makedhcpfails on a stock Ubuntu MN - #7832 the Ubuntu Genesis image ships without a DHCP client
- #7842 the Ubuntu ppc64el netboot image has no
dig - #7837 the Genesis deb version never advances past
snap000000000000
Kea is the backend on current distributions and several of these decide whether a compute node gets a lease:
- #7706 skip
*NOIP*NICs when building Kea reservations - #7708 Kea reservation updates leave inconsistent state
- #7703 preserve Kea reservations on
makedhcp -n - #7702 report unresolved Kea reservations
- #7723 boot unknown xNBA clients with Kea
- #7717 dispatch
makedhcponly to the service nodes serving the nodes - #7777 register the InfiniBand identity of a node that boots over IPoIB
- #7855
makednsleaves records behind because named cannot verify its own TSIG key - #7839 a compute node cannot resolve the management node by short name
xCAT needs three repositories: xcat-core, xcat-dep for the release and architecture, and the
xcat-dep/common repository that holds the Genesis images. The
xCAT-release package ([#7584]) installs all three, with the signing key:
dnf install -y https://xcat.org/files/xcat/repos/yum/latest/xcat-core/xCAT-release-latest.noarch.rpm
dnf install -y xCAT
To configure the repositories by hand instead, install the three .repo files. Replace rh10 and
x86_64 with the release and architecture of the management node:
cd /etc/yum.repos.d
curl -O https://xcat.org/files/xcat/repos/yum/latest/xcat-core/xcat-core.repo
curl -O https://xcat.org/files/xcat/repos/yum/latest/xcat-dep/rh10/x86_64/xcat-dep.repo
curl -O https://xcat.org/files/xcat/repos/yum/latest/xcat-dep/common/xcat-dep-common.repo
dnf install -y xCAT
xCAT only recommends the xCAT-genesis-openembedded-* packages. Without xcat-dep-common.repo,
dnf installs xCAT without them and prints no error, so the management node has no Genesis image
to netboot.
Here is what xcat.repo installed by xCAT-release looks like:
# /etc/yum.repos.d/xcat.repo
[xcat-core]
name=xCAT Core packages
baseurl=https://xcat.org/files/xcat/repos/yum/latest/xcat-core
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://xcat.org/files/xcat/repos/yum/latest/xcat-core/repodata/repomd.xml.key
[xcat-dep]
name=xCAT dependencies
baseurl=https://xcat.org/files/xcat/repos/yum/latest/xcat-dep/rh$releasever/$basearch
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://xcat.org/files/xcat/repos/yum/latest/xcat-dep/rh$releasever/$basearch/repodata/repomd.xml.key
[xcat-dep-common]
name=xCAT common dependencies
baseurl=https://xcat.org/files/xcat/repos/yum/latest/xcat-dep/common
enabled=1
skip_if_unavailable=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://xcat.org/files/xcat/repos/yum/latest/xcat-dep/common/repodata/repomd.xml.key
The apt repositories have no common component. Each codename carries its own Genesis packages in
xcat-dep.
curl -fsSL https://xcat.org/files/xcat/repos/apt/latest/xcat-core/apt.key \
| gpg --dearmor -o /usr/share/keyrings/xcat-core.gpg
curl -fsSL https://xcat.org/files/xcat/repos/apt/latest/xcat-dep/apt.key \
| gpg --dearmor -o /usr/share/keyrings/xcat-dep.gpg
codename=$(. /etc/os-release && echo "$VERSION_CODENAME")
url=https://xcat.org/files/xcat/repos/apt/latest
cat > /etc/apt/sources.list.d/xcat.list <<EOF
deb [signed-by=/usr/share/keyrings/xcat-core.gpg] $url
deb [signed-by=/usr/share/keyrings/xcat-dep.gpg] $url/
EOF
apt-get update
apt-get install -y xcat
The full change-log can be viewed through the link : https://github.com/xcat2/xcat-core/compare/2.18.2...2.19.0
- Aug 01, 2026: xCAT 2.18.2 released.
- Jun 22, 2026: xCAT 2.18 released.
- Nov 13, 2024: xCAT 2.17 released.
- Mar 08, 2023: xCAT 2.16.5 released.
- Jun 20, 2022: xCAT 2.16.4 released.
- Nov 17, 2021: xCAT 2.16.3 released.
- May 25, 2021: xCAT 2.16.2 released.
- Nov 06, 2020: xCAT 2.16.1 released.
- Jun 17, 2020: xCAT 2.16 released.
- Mar 06, 2020: xCAT 2.15.1 released.
- Nov 11, 2019: xCAT 2.15 released.
- Mar 29, 2019: xCAT 2.14.6 released.
- Dec 07, 2018: xCAT 2.14.5 released.
- Oct 19, 2018: xCAT 2.14.4 released.
- Aug 24, 2018: xCAT 2.14.3 released.
- Jul 13, 2018: xCAT 2.14.2 released.
- Jun 01, 2018: xCAT 2.14.1 released.
- Apr 20, 2018: xCAT 2.14 released.
- Mar 14, 2018: xCAT 2.13.11 released.
- Jan 26, 2018: xCAT 2.13.10 released.
- Dec 18, 2017: xCAT 2.13.9 released.
- Nov 03, 2017: xCAT 2.13.8 released.
- Sep 22, 2017: xCAT 2.13.7 released.
- Aug 10, 2017: xCAT 2.13.6 released.
- Jun 30, 2017: xCAT 2.13.5 released.
- May 19, 2017: xCAT 2.13.4 released.
- Apr 14, 2017: xCAT 2.13.3 released.
- Feb 24, 2017: xCAT 2.13.2 released.
- Jan 13, 2017: xCAT 2.13.1 released.
- Dec 09, 2016: xCAT 2.13 released.
- Dec 06, 2016: xCAT 2.9.4 (AIX only) released.
- Nov 11, 2016: xCAT 2.12.4 released.
- Sep 30, 2016: xCAT 2.12.3 released.
- Aug 19, 2016: xCAT 2.12.2 released.
- Jul 08, 2016: xCAT 2.12.1 released.
- May 20, 2016: xCAT 2.12 released.
- Apr 22, 2016: xCAT 2.11.1 released.
- Mar 11, 2016: xCAT 2.9.3 (AIX only) released.
- Dec 11, 2015: xCAT 2.11 released.
- Nov 11, 2015: xCAT 2.9.2 (AIX only) released.
- Jul 30, 2015: xCAT 2.10 released.
- Jul 30, 2015: xCAT migrates from sourceforge to github
- Jun 26, 2015: xCAT 2.7.9 released.
- Mar 20, 2015: xCAT 2.9.1 released.
- Dec 12, 2014: xCAT 2.9 released.
- Sep 5, 2014: xCAT 2.8.5 released.
- May 23, 2014: xCAT 2.8.4 released.
- Jan 24, 2014: xCAT 2.7.8 released.
- Nov 15, 2013: xCAT 2.8.3 released.
- Jun 26, 2013: xCAT 2.8.2 released.
- May 17, 2013: xCAT 2.7.7 released.
- May 10, 2013: xCAT 2.8.1 released.
- Feb 28, 2013: xCAT 2.8 released.
- Nov 30, 2012: xCAT 2.7.6 released.
- Oct 29, 2012: xCAT 2.7.5 released.
- Aug 27, 2012: xCAT 2.7.4 released.
- Jun 22, 2012: xCAT 2.7.3 released.
- May 25, 2012: xCAT 2.7.2 released.
- Apr 20, 2012: xCAT 2.7.1 released.
- Mar 19, 2012: xCAT 2.7 released.
- Mar 15, 2012: xCAT 2.6.11 released.
- Jan 23, 2012: xCAT 2.6.10 released.
- Nov 15, 2011: xCAT 2.6.9 released.
- Sep 30, 2011: xCAT 2.6.8 released.
- Aug 26, 2011: xCAT 2.6.6 released.
- May 20, 2011: xCAT 2.6 released.
- Feb 14, 2011: Watson plays on Jeopardy and is managed by xCAT!
- xCAT OS And Hw Support Matrix
- Oct 22, 2010: xCAT 2.5 released.
- Apr 30, 2010: xCAT 2.4 is released.
- Oct 31, 2009: xCAT 2.3 released. xCAT's 10 year anniversary!
- Apr 16, 2009: xCAT 2.2 released.
- Oct 31, 2008: xCAT 2.1 released.
- Sep 12, 2008: Support for xCAT 2 can now be purchased!
- June 9, 2008: xCAT breaths life into (at the time) the fastest supercomputer on the planet
- May 30, 2008: xCAT 2.0 for Linux officially released!
- Oct 31, 2007: IBM open sources xCAT 2.0 to allow collaboration among all of the xCAT users.
- Oct 31, 1999: xCAT 1.0 is born!
xCAT started out as a project in IBM developed by Egan Ford. It was quickly adopted by customers and IBM manufacturing sites to rapidly deploy clusters.