Type: disk
¶
Note
The disk
device type is supported for both containers and VMs.
It supports hotplugging for both containers and VMs.
Disk devices supply additional storage to instances.
For containers, they are essentially mount points inside the instance (either as a bind-mount of an existing file or directory on the host, or, if the source is a block device, a regular mount).
Virtual machines share host-side mounts or directories through 9p
or virtiofs
(if available), or as VirtIO disks for block-based disks.
Types of disk devices¶
You can create disk devices from different sources.
The value that you specify for the source
option specifies the type of disk device that is added:
- Storage volume
The most common type of disk device is a storage volume. To add a storage volume, specify its name as the
source
of the device:lxc config device add <instance_name> <device_name> disk pool=<pool_name> source=<volume_name> [path=<path_in_instance>]
The path is required for file system volumes, but not for block volumes.
Alternatively, you can use the
lxc storage volume attach
command to Attach the volume to an instance. Both commands use the same mechanism to add a storage volume as a disk device.- Path on the host
You can share a path on your host (either a file system or a block device) to your instance by adding it as a disk device with the host path as the
source
:lxc config device add <instance_name> <device_name> disk source=<path_on_host> [path=<path_in_instance>]
The path is required for file systems, but not for block devices.
- Ceph RBD
LXD can use Ceph to manage an internal file system for the instance, but if you have an existing, externally managed Ceph RBD that you would like to use for an instance, you can add it with the following command:
lxc config device add <instance_name> <device_name> disk source=ceph:<pool_name>/<volume_name> ceph.user_name=<user_name> ceph.cluster_name=<cluster_name> [path=<path_in_instance>]
The path is required for file systems, but not for block devices.
- CephFS
LXD can use Ceph to manage an internal file system for the instance, but if you have an existing, externally managed Ceph file system that you would like to use for an instance, you can add it with the following command:
lxc config device add <instance_name> <device_name> disk source=cephfs:<fs_name>/<path> ceph.user_name=<user_name> ceph.cluster_name=<cluster_name> path=<path_in_instance>
- ISO file
You can add an ISO file as a disk device for a virtual machine. It is added as a ROM device inside the VM.
This source type is applicable only to VMs.
To add an ISO file, specify its file path as the
source
:lxc config device add <instance_name> <device_name> disk source=<file_path_on_host>
- VM
cloud-init
You can generate a
cloud-init
configuration ISO from thecloud-init.vendor-data
andcloud-init.user-data
configuration keys (see Instance options) and attach it to a virtual machine. Thecloud-init
that is running inside the VM then detects the drive on boot and applies the configuration.This source type is applicable only to VMs.
To add such a device, use the following command:
lxc config device add <instance_name> <device_name> disk source=cloud-init:config
Device options¶
disk
devices have the following device options:
Key |
Type |
Default |
Required |
Description |
---|---|---|---|---|
|
integer |
- |
no |
Boot priority for VMs (higher value boots first) |
|
string |
|
no |
The cluster name of the Ceph cluster (required for Ceph or CephFS sources) |
|
string |
|
no |
The user name of the Ceph cluster (required for Ceph or CephFS sources) |
|
string |
|
no |
Only for VMs: Override the caching mode for the device ( |
|
string |
- |
no |
I/O limit in byte/s or IOPS for both read and write (same as setting both |
|
string |
- |
no |
I/O limit in byte/s (various suffixes supported, see Units for storage and network limits) or in IOPS (must be suffixed with |
|
string |
- |
no |
I/O limit in byte/s (various suffixes supported, see Units for storage and network limits) or in IOPS (must be suffixed with |
|
string |
- |
yes |
Path inside the instance where the disk will be mounted (only for containers) |
|
string |
- |
no |
The storage pool to which the disk device belongs (only applicable for storage volumes managed by LXD) |
|
string |
- |
no |
Controls how a bind-mount is shared between the instance and the host (can be one of |
|
string |
- |
no |
File system specific mount options |
|
bool |
|
no |
Controls whether to make the mount read-only |
|
bool |
|
no |
Controls whether to recursively mount the source path |
|
bool |
|
no |
Controls whether to fail if the source doesn’t exist |
|
bool |
|
no |
Sets up a shifting overlay to translate the source UID/GID to match the instance (only for containers) |
|
string |
- |
no |
Disk size in bytes (various suffixes supported, see Units for storage and network limits) - only supported for the |
|
string |
- |
no |
Same as |
|
string |
- |
yes |
Source of a file system or block device (see Types of disk devices for details) |