Controlling Warewulf
Warewulf’s command-line interface is based primarily around the wwctl
command. This command has sub-commands for each major component of Warewulf’s
functionality.
configure: configures the Warewulf server and its external servicesnode: manages nodes in the clusterprofile: defines common sets of node configuration which can be applied to multiple nodesimage: configures (node) imagesoverlay: manages overlaysclean: removes the OCI image cache and leftover overlay images from deleted nodes
wwctl also provides additional helpers for interacting with cluster nodes
over SSH and IPMI.
power: turns nodes on and offssh: provides basic parallel ssh functionality
All of these subcommands (and their respective sub-subcommands) have
built-in help with either wwctl help or --help.
Hostlists
Many of the commands (e.g., wwctl node list) support a “hostlist”
syntax for referring to multiple nodes at once. Hostlist expressions
support both ranges and comma-separated numerical lists.
For example:
node[1-2]expands tonode1 node2node[1,3]expands tonode1 node3node[1,5-6]expands tonode1 node5 node6
Node status
During the whole provisioning process of your nodes, you can check their status through the following command :
# wwctl node status
NODENAME STAGE SENT LASTSEEN (s)
================================================================================
n1 RUNTIME_OVERLAY __RUNTIME__.img.gz 16
For each node, there are 7 different stages:
EFI
IPXE
KERNEL
IMAGE
INITRAMFS
SYSTEM_OVERLAY
RUNTIME_OVERLAY
You can use the wwctl node status to check communication between the
Warewulf server (warewulfd) and the Warewulf client (wwclient).
Note
A provisioning workflow might not use every stage.
Maintenance
wwctl clean reclaims disk space by removing two categories of data that
accumulate over time:
The OCI blob cache, stored at
$cachedir/warewulf(default:/var/cache/warewulf). This cache is populated duringwwctl image importand speeds up subsequent imports of images that share layers. It is safe to remove: the nextwwctl image importwill re-download any needed layers.Provisioned overlay images for nodes that have been deleted from the node database. These are stored under
$wwprovisiondir/overlaysand are no longer needed once the corresponding node is removed.
# wwctl clean
wwctl clean is particularly useful after deleting a large number of nodes,
or when disk space is limited on the Warewulf server. Note that wwctl clean
only removes the current cache location ($cachedir/warewulf); if you are
upgrading from v4.5.x, the legacy cache at $datastore/oci must be removed
manually (see OCI Blob Cache).