@@ -31,7 +31,7 @@ Install Warewulf and dependencies
|
||||
cd ~/git
|
||||
git clone https://github.com/warewulf/warewulf.git
|
||||
cd warewulf
|
||||
git checkout main # or switch to a tag like 'v4.6.1'
|
||||
git checkout main # or switch to a tag like 'v4.6.2'
|
||||
make all && sudo make install
|
||||
|
||||
Configure firewalld
|
||||
|
||||
@@ -10,11 +10,11 @@ Install Warewulf
|
||||
|
||||
The preferred way to install Warewulf on Enterprise Linux is using the
|
||||
the RPMs published in `GitHub releases`_. For example, to install the
|
||||
v4.6.1 release on Enterprise Linux 9:
|
||||
v4.6.2 release on Enterprise Linux 9:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
dnf install https://github.com/warewulf/warewulf/releases/download/v4.6.1/warewulf-4.6.1-1.el9.x86_64.rpm
|
||||
dnf install https://github.com/warewulf/warewulf/releases/download/v4.6.2/warewulf-4.6.2-1.el9.x86_64.rpm
|
||||
|
||||
Packages are available for el8 and el9.
|
||||
|
||||
|
||||
@@ -91,3 +91,4 @@ Welcome to the Warewulf User Guide!
|
||||
|
||||
v4.6.0 <release/v4.6.0>
|
||||
v4.6.1 <release/v4.6.1>
|
||||
v4.6.2 <release/v4.6.2>
|
||||
|
||||
@@ -206,6 +206,12 @@ Importing Nodes From a File
|
||||
You can import nodes into Warewulf by using the ``wwctl node import`` command.
|
||||
The file used must be in YAML format.
|
||||
|
||||
.. warning::
|
||||
Importing a node configuration will fully overwrite the existing settings,
|
||||
including any customizations not present in the import file. If the node
|
||||
already exists and you wish to update it, ensure that the import file
|
||||
includes all the options you want to retain.
|
||||
|
||||
The YAML file must be a mapping of node names to their attributes, where each
|
||||
node is represented as a dictionary of attributes. To simplify the creation of
|
||||
the YAML file, you can use the wwctl node export command to export the current
|
||||
|
||||
56
userdocs/release/v4.6.2.rst
Normal file
56
userdocs/release/v4.6.2.rst
Normal file
@@ -0,0 +1,56 @@
|
||||
====================
|
||||
v4.6.2 Release Notes
|
||||
====================
|
||||
|
||||
v4.6.2 is a regularly-scheduled minor release in the v4.6.x series. It also
|
||||
includes a preview implementation of the ability to provision the node image to
|
||||
a local disk.
|
||||
|
||||
Significant changes are described below. Additional changes are listed in the
|
||||
`CHANGELOG`_.
|
||||
|
||||
.. _CHANGELOG: https://github.com/warewulf/warewulf/blob/main/CHANGELOG.md
|
||||
|
||||
Provisioning to disk
|
||||
====================
|
||||
|
||||
v4.6.2 includes a preview implementation of the ability to provision the node
|
||||
image to a local disk. This includes the ability to provision disks earlier in
|
||||
the boot process, primarily during the first phase of a two-phase boot using
|
||||
dracut.
|
||||
|
||||
Disks may be provisioned using ``ignition``, as before; but may now also be
|
||||
provisioned using new ``sfdisk``, ``mkfs``, and ``mkswap`` overlays, and to
|
||||
mount configured file systems using ``systemd.mount`` and ``systemd.swap``
|
||||
overlays. These overlays may also each be configured using overlay-specific
|
||||
"resources", which may additional control compared to Warewulf's built-in disk,
|
||||
partition, and file system configuration.
|
||||
|
||||
To support more complext partition layouts, ``wwctl <node|partition> set
|
||||
--parttype`` has been added to specify non-default partition types. This is
|
||||
particularly useful when creating an EFI partition, which may be used in a
|
||||
future release to configure serverless local booting.
|
||||
|
||||
Finally, ``wwctl profile set`` has been fixed to now properly support
|
||||
configuration of disks, partitions and file systems.
|
||||
|
||||
For more information, see the :ref:`provision to disk` section.
|
||||
|
||||
REST API
|
||||
========
|
||||
|
||||
v4.6.2 continues development of the REST API, properly handling attempts to
|
||||
create a node that already exists, and fetching uid, gid, and mode permissions
|
||||
for overlay files. The previous gRPC-based API servers and client have also been
|
||||
removed.
|
||||
|
||||
Other fixes
|
||||
===========
|
||||
|
||||
- NetworkManager now waits for interfaces to come online before provisioning with Dracut.
|
||||
- The ``udev.netname`` overlay now properly handles InfiniBand interfaces in more cases.
|
||||
- Fixed a regression in SELinux support by restoring the ``/run`` mount during wwinit.
|
||||
- GRUB now properly reports errors and reboots when an error occurs.
|
||||
- Fixed IPMI VLAN configuration.
|
||||
- Preserve existing permissions during ``wwctl overlay edit``.
|
||||
- Fix CSV processing during ``wwctl node import --csv``.
|
||||
@@ -340,11 +340,11 @@ an initramfs inside the image.
|
||||
.. code-block:: shell
|
||||
|
||||
# Enterprise Linux
|
||||
wwctl image exec rockylinux-9 --build=false -- /usr/bin/dnf -y install https://github.com/warewulf/warewulf/releases/download/v4.6.1/warewulf-dracut-4.6.1-1.el9.noarch.rpm
|
||||
wwctl image exec rockylinux-9 --build=false -- /usr/bin/dnf -y install https://github.com/warewulf/warewulf/releases/download/v4.6.2/warewulf-dracut-4.6.2-1.el9.noarch.rpm
|
||||
wwctl image exec rockylinux-9 -- /usr/bin/dracut --force --no-hostonly --add wwinit --regenerate-all
|
||||
|
||||
# SUSE
|
||||
wwctl image exec leap-15 --build=false -- /usr/bin/zypper -y install https://github.com/warewulf/warewulf/releases/download/v4.6.1/warewulf-dracut-4.6.1-1.suse.lp155.noarch.rpm
|
||||
wwctl image exec leap-15 --build=false -- /usr/bin/zypper -y install https://github.com/warewulf/warewulf/releases/download/v4.6.2/warewulf-dracut-4.6.2-1.suse.lp155.noarch.rpm
|
||||
wwctl image exec leap-15 -- /usr/bin/dracut --force --no-hostonly --add wwinit --regenerate-all
|
||||
|
||||
.. note::
|
||||
|
||||
@@ -18,14 +18,14 @@ Rocky Linux 9
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
# dnf install https://github.com/warewulf/warewulf/releases/download/v4.6.1/warewulf-4.6.1-1.el9.x86_64.rpm
|
||||
# dnf install https://github.com/warewulf/warewulf/releases/download/v4.6.2/warewulf-4.6.2-1.el9.x86_64.rpm
|
||||
|
||||
openSuse Leap
|
||||
-------------
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
# zypper install https://github.com/warewulf/warewulf/releases/download/v4.6.1/warewulf-4.6.1-1.suse.lp155.x86_64.rpm
|
||||
# zypper install https://github.com/warewulf/warewulf/releases/download/v4.6.2/warewulf-4.6.2-1.suse.lp155.x86_64.rpm
|
||||
|
||||
Container images
|
||||
================
|
||||
@@ -97,9 +97,9 @@ appropriate substitutions:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
curl -LO https://github.com/warewulf/warewulf/releases/download/v4.6.1/warewulf-4.6.1.tar.gz
|
||||
tar -xf warewulf-4.6.1.tar.gz
|
||||
cd warewulf-4.6.1
|
||||
curl -LO https://github.com/warewulf/warewulf/releases/download/v4.6.2/warewulf-4.6.2.tar.gz
|
||||
tar -xf warewulf-4.6.2.tar.gz
|
||||
cd warewulf-4.6.2
|
||||
make all && sudo make install
|
||||
|
||||
Git
|
||||
@@ -118,7 +118,7 @@ from the main site, the GitHub releases page, or from a Git tag.
|
||||
|
||||
git clone https://github.com/warewulf/warewulf.git
|
||||
cd warewulf
|
||||
git checkout main # or switch to a tag like 'v4.6.1'
|
||||
git checkout main # or switch to a tag like 'v4.6.2'
|
||||
make all && sudo make install
|
||||
|
||||
Runtime Dependencies
|
||||
|
||||
Reference in New Issue
Block a user