Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions docs_user/modules/proc_adopting-the-block-storage-service.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -349,13 +349,18 @@ $ openstack volume backup list
$ openstack volume create --image cirros --bootable --size 1 disk_new
----

.. Back up the previous attached volume:
.. If you deployed and adopted the `cinder-backup` service, back up the previously attached volume:
+
----
$ openstack --os-volume-api-version 3.47 volume create --backup <backup_name>
$ openstack volume backup create <volume_name> --name <backup_name>
----
+
* Replace `<backup_name>` with the name of your new backup location.
where:

`<volume_name>`:: Specifies the volume that you want to back up.
Replace `<volume_name>` with the volume you want to back up.
`<backup_name>`:: Specifies the name of your new backup.
Replace `<backup_name>` with the name of your new backup.
+
[NOTE]
You do not boot a {compute_service_first_ref} instance by using the new `volume from` image or try to detach the previous volume because the {compute_service} and the {block_storage} are still not connected.
Expand Down
Loading