Merge "Use 'openstack' command-client commands to replace cinder commands"

This commit is contained in:
Jenkins 2016-12-12 02:06:06 +00:00 committed by Gerrit Code Review
commit c600429605
1 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@
Back up and restore volumes and snapshots Back up and restore volumes and snapshots
========================================= =========================================
The ``cinder`` command-line interface provides the tools for creating a The ``openstack`` command-line interface provides the tools for creating a
volume backup. You can restore a volume from a backup as long as the volume backup. You can restore a volume from a backup as long as the
backup's associated database information (or backup metadata) is intact backup's associated database information (or backup metadata) is intact
in the Block Storage database. in the Block Storage database.
@ -13,7 +13,7 @@ Run this command to create a backup of a volume:
.. code-block:: console .. code-block:: console
$ cinder backup-create [--incremental] [--force] VOLUME $ openstack volume backup create [--incremental] [--force] VOLUME
Where ``VOLUME`` is the name or ID of the volume, ``incremental`` is Where ``VOLUME`` is the name or ID of the volume, ``incremental`` is
a flag that indicates whether an incremental backup should be performed, a flag that indicates whether an incremental backup should be performed,
@ -73,7 +73,7 @@ the volume:
.. code-block:: console .. code-block:: console
$ cinder backup-restore BACKUP_ID $ openstack volume backup restore BACKUP_ID VOLUME_ID
When restoring from a full backup, it is a full restore. When restoring from a full backup, it is a full restore.
@ -168,8 +168,8 @@ Run this command to create a backup of a snapshot:
.. code-block:: console .. code-block:: console
$ cinder backup-create [--incremental] [--force] \ $ openstack volume backup create [--incremental] [--force] \
[--snapshot-id SNAPSHOT_ID] VOLUME [--snapshot SNAPSHOT_ID] VOLUME
Where ``VOLUME`` is the name or ID of the volume, ``SNAPSHOT_ID`` is the ID of Where ``VOLUME`` is the name or ID of the volume, ``SNAPSHOT_ID`` is the ID of
the volume's snapshot. the volume's snapshot.