Volume Specification
The Nomad volume specification defines the schema for creating and registering
volumes using the volume create
and volume register
commands and the
PUT /v1/volume/csi/:volume_id/create
and PUT
/v1/volume/csi/:volume_id
API endpoints.
Some attributes are only be supported by specific operation, while others may have a different meaning for each action, so read the documentation for each attribute carefully. The section Differences Between Create and Register provides a summary of the differences.
The file may be provided as either HCL or JSON to the commands and as JSON to
the API. An example HCL configuration for a volume create
command:
Volume Specification Parameters
id
(string: <required>)
- The unique ID of the volume. This is how thevolume.source
field in a job specification will refer to the volume.namespace
(string: <optional>)
- The namespace of the volume. This field overrides the namespace provided by the-namespace
flag orNOMAD_NAMESPACE
environment variable. Defaults to"default"
if unset.name
(string: <required>)
- The display name of the volume. On volume creation, this field may be used by the external storage provider to tag the volume.type
(string: <required>)
- The type of volume. Currently only"csi"
is supported.external_id
(string: <required>)
- The ID of the physical volume from the storage provider. For example, the volume ID of an AWS EBS volume or Digital Ocean volume. Only allowed on volume registration.plugin_id
(string: <required>)
- The ID of the CSI plugin that manages this volume.snapshot_id
(string: <optional>)
- If the storage provider supports snapshots, the external ID of the snapshot to restore when creating this volume. If omitted, the volume will be created from scratch. Thesnapshot_id
cannot be set if theclone_id
field is set. Only allowed on volume creation.clone_id
(string: <optional>)
- If the storage provider supports cloning, the external ID of the volume to clone when creating this volume. If omitted, the volume will be created from scratch. Theclone_id
cannot be set if thesnapshot_id
field is set. Only allowed on volume creation.capacity_min
(string: <optional>)
- Option for requesting a minimum capacity, in bytes. The capacity of a volume may be the physical size of a disk, or a quota, depending on the storage provider. The specific size of the resulting volume will be somewhere betweencapacity_min
andcapacity_max
; the exact behavior is up to the storage provider. If you want to specify an exact size, you should setcapacity_min
andcapacity_max
to the same value. Accepts human-friendly suffixes such as"100GiB"
. This field may not be supported by all storage providers. Only allowed on volume creation.capacity_max
(string: <optional>)
- Option for requesting a maximum capacity, in bytes. The capacity of a volume may be the physical size of a disk, or a quota, depending on the storage provider. The specific size of the resulting volume will be somewhere betweencapacity_min
andcapacity_max
; the exact behavior is up to the storage provider. If you want to specify an exact size, you should setcapacity_min
andcapacity_max
to the same value. Accepts human-friendly suffixes such as"100GiB"
. This field may not be supported by all storage providers. Only allowed on volume creation.capability
(Capability: <required>)
- Option for validating the capability of a volume.mount_options
(MountOptions: <required>)
- Options for mountingfile-system
volumes that don't already have a pre-formatted file system.topology_request
(TopologyRequest: nil)
- Specify locations (region, zone, rack, etc.) where the provisioned volume must be accessible from in the case of volume creation or the locations where the existing volume is accessible from in the case of volume registration.secrets
(map<string|string>:nil)
- An optional key-value map of strings used as credentials for publishing and unpublishing volumes.parameters
(map<string|string>:nil)
- An optional key-value map of strings passed directly to the CSI plugin to configure the volume. The details of these parameters are specific to each storage provider, so consult the specific plugin documentation for more information.context
(map<string|string>:nil)
- An optional key-value map of strings passed directly to the CSI plugin to validate the volume. The details of these parameters are specific to each storage provider, so consult the specific plugin documentation for more information. Only allowed on volume registration. Note that, like the rest of the volume specification, this block is declarative, and an update replaces it in its entirety, therefore all parameters need to be specified.
Differences Between Create and Register
Several fields are set automatically by the plugin when volume create
or
volume register
commands are successful and you should not set their values
if they are not supported by the operation.
You should not set the snapshot_id
, clone_id
,
capacity_min
, or capacity_max
fields on
volume registration.
And you should not set the external_id
or
context
fields on volume creation.
Updating a Volume Definition
The volume register
command allows updating a volume definition. But not all
fields can be updated after the volume is registered:
- The
capacity_min
andcapacity_max
fields can be updated, so long as the volumes existing capacity fits within that range. The actual capacity of the volume is unchanged. - The
capability
blocks can be added or removed, but only if the capability is not currently in use by a mounted volume. - The
mount_options
block can be updated if the volume is not in use. - The
secrets
block can be updated. - The
context
block can be updated. The values for this field are typically provided by the CSI plugin, and should not be updated unless recommended by the CSI plugin's documentation.
Examples
Volume registration
This is an example file used for the volume register
command.