.. _custom_volumes:
Custom Disk Volumes
===================
.. sidebar:: Abstract
This chapter provides high-level explanations on how to handle volume
or subvolume definitions for disk images using {kiwi}.
{kiwi} supports defining custom volumes by using the logical volume manager
(LVM) for the Linux kernel or by setting volumes at the filesystem level when
the filesystem supports it (e.g., btrfs).
Volumes are defined in the {kiwi} description file, :file:`config.xml`,
using `systemdisk`. This element is a child of the `type`.
Volumes themselves are added via (multiple) `volume` child
elements of the `systemdisk` element:
.. code:: xml
Additional non-root volumes are created for each `volume`
element. Volume details can be defined by setting the following `volume`
attributes:
- `name`: Required attribute representing the volume's name. Additionally, this
attribute is interpreted as the mountpoint if the `mountpoint` attribute
is not used.
- `mountpoint`: Optional attribute that specifies the mountpoint of this
volume.
- `size`: Optional attribute to set the size of the volume. If no suffix
(`M` or `G`) is used, then the value is considered to be in megabytes.
.. note:: Special name for the root volume
You can use the `@root` name to refer to the volume mounted at `/` in
case some specific size attributes for the root volume have to be
defined. For instance:
.. code:: xml
In addition to the custom size of the root volume, it's also possible
to set up the name of the root volume as follows:
.. code:: xml
If no name for the root volume is specified, the
default name, **LVRoot**, applies.
- `freespace`: Optional attribute defining the additional free space added
to the volume. If no suffix (`M` or `G`) is used, the value is considered
to be in megabytes.
- `label`: Optional attribute to set the filesystem label of the volume.
- `copy_on_write`: Optional attribute to set the filesystem copy-on-write
attribute for this volume.
- `quota`: Optional attribute for the `btrfs` filesystem only. Allows
you to specify a quota size for the generated volume.
- `filesystem_check`: Optional attribute to indicate that this
filesystem should perform the validation to become filesystem-checked.
The actual constraints of whether the check is performed or not depends on
systemd and filesystem-specific components. If not set or set to
`false`, no system component will be triggered to run an eventual
filesystem check, which results in this filesystem never being checked.
The latter is the default.
- `arch`: Optional attribute to create the volume only if it matches
the specified host architecture. Multiple architecture names can
be specified as a comma-separated list.
.. warning::
The size attributes for filesystem volumes, as for btrfs, are
ignored and have no effect.
The `systemdisk` element additionally supports the following optional
attributes:
- `name`: The volume group name, by default, `kiwiVG` is used. This setting
is only relevant for LVM volumes.
- `preferlvm`: A boolean value instructing {kiwi} to prefer LVM even if the
used filesystem has its own volume management system.