This documents the changes made to the REST API with every microversion change. The description for each version should be a verbose one which has enough information to be suitable for use in user documentation.
The 3.0 Cinder API includes all v2 core APIs existing prior to the introduction of microversions. The /v3 URL is used to call 3.0 APIs. This is the initial version of the Cinder API which supports microversions.
A user can specify a header in the API request:
OpenStack-API-Version: volume <version>
where <version>
is any valid api version for this API.
If no version is specified then the API will behave as if version 3.0 was requested.
The only API change in version 3.0 is versions, i.e. GET http://localhost:8786/, which now returns information about 3.0 and later versions and their respective /v3 endpoints.
All other 3.0 APIs are functionally identical to version 2.0.
Added the parameters protected
and visibility
to
_volume_upload_image requests.
Change in return value of ‘GET API request’ for fetching cinder volume list on the basis of ‘bootable’ status of volume as filter.
Before V3.2, ‘GET API request’ to fetch volume list returns non-bootable volumes if bootable filter value is any of the false or False. For any other value provided to this filter, it always returns bootable volume list.
But in V3.2, this behavior is updated. In V3.2, bootable volume list will be returned for any of the ‘T/True/1/true’ bootable filter values only. Non-bootable volume list will be returned for any of ‘F/False/0/false’ bootable filter values. But for any other values passed for bootable filter, it will return “Invalid input received: bootable={filter value}’ error.
Added /messages API.
Added the filter parameters glance_metadata
to
list/detail volumes requests.
Added pagination support to /messages API
Allowed to set empty description and empty name for consistency group in consisgroup-update operation.
Added cluster_name
field to service list/detail.
Added /clusters endpoint to list/show/update clusters.
Show endpoint requires the cluster name and optionally the binary as a URL parameter (default is “cinder-volume”). Returns:
{
"cluster": {
"created_at": "",
"disabled_reason": null,
"last_heartbeat": "",
"name": "cluster_name",
"num_down_hosts": 4,
"num_hosts": 2,
"state": "up",
"status": "enabled",
"updated_at": ""
}
}
Update endpoint allows enabling and disabling a cluster in a similar way to service’s update endpoint, but in the body we must specify the name and optionally the binary (“cinder-volume” is the default) and the disabled reason. Returns:
{
"cluster": {
"name": "cluster_name",
"state": "up",
"status": "enabled",
"disabled_reason": null
}
}
Index and detail accept filtering by name, binary, disabled, num_hosts , num_down_hosts, and up/down status (is_up) as URL parameters.
Index endpoint returns:
{
"clusters": [
{
"name": "cluster_name",
"state": "up",
"status": "enabled"
}
]
}
Detail endpoint returns:
{
"clusters": [
{
"created_at": "",
"disabled_reason": null,
"last_heartbeat": "",
"name": "cluster_name",
"num_down_hosts": 4,
"num_hosts": 2,
"state": "up",
"status": "enabled",
"updated_at": ""
}
]
}
Adds the following resources that were previously in extensions:
os-volume-manage => /v3/<project_id>/manageable_volumes
os-snapshot-manage => /v3/<project_id>/manageable_snapshots
Added backup update interface to change name and description. Returns:
{
"backup": {
"id": "backup_id",
"name": "backup_name",
"links": "backup_link"
}
}
Added the filter parameters group_id
to
list/detail volumes requests.
Added group types and group specs APIs.
Added volumes/summary API.
Added create/delete/update/list/show APIs for generic volume groups.
Added group snapshots and create group from src APIs.
Added injecting the response’s Etag header to avoid the lost update problem with volume metadata.
os-migrate_volume now accepts cluster
parameter when we want to migrate a
volume to a cluster. If we pass the host
parameter for a volume that is
in a cluster, the request will be sent to the cluster as if we had requested
that specific cluster. Only host
or cluster
can be provided.
Creating a managed volume also supports the cluster parameter.
os-snapshot-manage and os-volume-manage now support cluster
parameter on
listings (summary and detailed). Both location parameters, cluster
and
host
are exclusive and only one should be provided.
Added backup project attribute.
Added reset status actions ‘reset_status’ to group snapshot.
Added reset status actions ‘reset_status’ to generic volume group.
Show provider_id in detailed view of a volume for admin.
Added support to filter snapshot list based on metadata of snapshot.
Allow passing force parameter to volume delete.
New API endpoint /workers/cleanup allows triggering cleanup for cinder-volume services. Meant for cleaning ongoing operations from failed nodes.
The cleanup will be performed by other services belonging to the same cluster, so at least one of them must be up to be able to do the cleanup.
Cleanup cannot be triggered during a cloud upgrade.
If no arguments are provided cleanup will try to issue a clean message for
all nodes that are down, but we can restrict which nodes we want to be
cleaned using parameters service_id
, cluster_name
, host
,
binary
, and disabled
.
Cleaning specific resources is also possible using resource_type
and
resource_id
parameters.
We can even force cleanup on nodes that are up with is_up
, but that’s
not recommended and should only used if you know what you are doing. For
example if you know a specific cinder-volume is down even though it’s still
not being reported as down when listing the services and you know the cluster
has at least another service to do the cleanup.
API will return a dictionary with 2 lists, one with services that have been
issued a cleanup request (cleaning
key) and the other with services
that cannot be cleaned right now because there is no alternative service to
do the cleanup in that cluster (unavailable
key).
Data returned for each service element in these two lists consist of the
id
, host
, binary
, and cluster_name
. These are not the
services that will be performing the cleanup, but the services that will be
cleaned up or couldn’t be cleaned up.
Add volumes
field to group list/detail and group show.
New failover
action equivalent to failover_host
, but accepting
cluster
parameter as well as the host
cluster that
failover_host
accepts.
freeze
and thaw
actions accept cluster
parameter.
Cluster listing accepts replication_status
, frozen
and
active_backend_id
as filters, and returns additional fields for each
cluster: replication_status
, frozen
, active_backend_id
.
Added new attachment APIs. See the API reference for details.
Add filters support to get_pools
Add filter, sorter and pagination support in group snapshot.
Support sort snapshots with “name”.
Add support for configure resource query filters.
Added set-log
and get-log
service actions.
Add resource_filters
API to retrieve configured resource filters.
Add like filter support in volume
, backup
, snapshot
, message
,
attachment
, group
and group-snapshot
list APIs.
Add volume-type
filter to Get-Pools API.
Add metadata to volumes/summary response body.
Support sort backup by “name”.
Added enable_replication/disable_replication/failover_replication/ list_replication_targets for replication groups (Tiramisu).
Add project_id
admin filters support to limits.
Add volume revert to its latest snapshot support.
Add user_id
field to snapshot list/detail and snapshot show.
Add ability to extend ‘in-use’ volume. User should be aware of the whole environment before using this feature because it’s dependent on several external factors below:
nova-compute version - needs to be the latest for Pike.
only the libvirt compute driver supports this currently.
only iscsi and fibre channel volume types are supported on the nova side currently.
Administrator can disable this ability by updating the
volume:extend_attached_volume
policy rule. Extend of a reserved
Volume is NOT allowed.
Support backup CRUD with metadata.
Support attachment completion. See the API reference for details.
Add count
field to volume, backup and snapshot list and detail APIs.
Support create volume by Nova specific image (0 size image).
Support create volume from backup.
Add shared_targets
and service_uuid
fields to volume.
Support report backend storage state in service list.
Services supporting this microversion are capable of volume multiattach. This version does not need to be requested when creating the volume, but can be used as a way to query if the capability exists in the Cinder service.
Add support for cross AZ backups.
RESKEY:availability_zones
is a reserved spec key for AZ volume type,
and filter volume type by extra_specs
is supported now.
Schema validation support has been added using jsonschema for V2/V3 volume APIs.
Before 3.53, create volume API used to accept any invalid parameters in the request body like the ones below were passed by python-cinderclient.
user_id
project_id
status
attach_status
But in 3.53, this behavior is updated. If user passes any invalid parameters to the API which are not documented in api-ref, then it will raise badRequest error.
Before 3.53, even if user doesn’t pass any valid parameters in the request body, the volume was updated. But in 3.53, user will need to pass at least one valid parameter in the request body otherwise it will return 400 error.
Add mode
argument to attachment-create.
Support ability to transfer snapshots along with their parent volume.
Add user_id
attribute to response body of list backup with detail and show
backup detail APIs.
Expanded volume transfer record details by adding source_project_id
,
destination_project_id
and accepted
fields to transfer
table and
related api (create/show/list detail transfer APIs) responses.
Add project_id
attribute to response body of list groups with detail,
list group snapshots with detail, show group detail and show group snapshot
detail APIs.
Support volume transfer pagination.
Users may apply time comparison filters to the volume summary list and volume
detail list requests by using the created_at
or updated_at
fields.
Time must be expressed in ISO 8601 format.
Add cluster_name
attribute to response body of volume details for admin in
Active/Active HA mode.
Add support for set, get, and unset a default volume type for a specific project. Setting this default overrides the configured default_volume_type value.
Includes volume type ID in the volume-show and volume-detail-list JSON responses. Before this microversion, Cinder returns only the volume type name in the volume details.
Include the encryption_key_id
in volume and backup details when the
associated volume is encrypted.
Include a consumes_quota
field in volume and snapshot details to indicate
whether the resource is consuming quota or not. Also, accept a
consumes_quota
filter, which takes a boolean value, in the volume and
snapshot list requests. (The default listing behavior is not to use this
filter.)
Volume snapshots of in-use volumes can be created without the ‘force’ flag. Although the ‘force’ flag is now considered invalid when passed in a volume snapshot request, for backward compatibility, the ‘force’ flag with a value evaluating to True is silently ignored.
API URLs no longer need a “project_id” argument in them. For example, the API
route: https://$(controller)s/volume/v3/$(project_id)s/volumes
is
equivalent to https://$(controller)s/volume/v3/volumes
. When interacting
with the cinder service as system or domain scoped users, a project_id should
not be specified in the API path.
Support ability to re-image a volume with a specific image. Specify the
os-reimage
action in the request body.
Volume field shared_targets
is a tristate boolean value now, with the
following meanings:
true
: Do os-brick locking when host iSCSI initiator doesn’t support
manual scans.
false
: Never do locking.
null
: Forced locking regardless of the iSCSI initiator.
Add the ability to transfer encrypted volumes and their snapshots. The feature removes a prior restriction on transferring encrypted volumes. Otherwise, the API request and response schema are unchanged.
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.