From 2217cbdc3b8e39663545ad6c197af0109f48cbc3 Mon Sep 17 00:00:00 2001 From: Matt Riedemann Date: Wed, 5 Apr 2017 10:24:10 -0400 Subject: [PATCH] Fix volume id reference in boot from volume example The server create example for boot from volume in step 3 is using the wrong volume id. This change makes it use the volume id from the volume list table output in step 2. Change-Id: Ib19346d382ab2d1173e4f2ae576724a3b4d19bfc Closes-Bug: #1680108 --- .../source/cli-nova-launch-instance-from-volume.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/user-guide/source/cli-nova-launch-instance-from-volume.rst b/doc/user-guide/source/cli-nova-launch-instance-from-volume.rst index 81b2f8c30a..daa27fb85a 100644 --- a/doc/user-guide/source/cli-nova-launch-instance-from-volume.rst +++ b/doc/user-guide/source/cli-nova-launch-instance-from-volume.rst @@ -91,7 +91,7 @@ system. .. code-block:: console $ openstack server create --flavor 2 --image 98901246-af91-43d8-b5e6-a4506aa8f369 \ - --block-device source=volume,id=d620d971-b160-4c4e-8652-2513d74e2080,dest=volume,shutdown=preserve \ + --block-device source=volume,id=b8f7bbec-6274-4cd7-90e7-60916a5e75d4,dest=volume,shutdown=preserve \ myInstanceWithVolume +--------------------------------------+--------------------------------------------+ | Field | Value | @@ -118,7 +118,7 @@ system. | key_name | - | | metadata | {} | | name | myInstanceWithVolume | - | os-extended-volumes:volumes_attached | [{"id": "d620d971-b160-4c4e-8652-2513d7... | + | os-extended-volumes:volumes_attached | [{"id": "b8f7bbec-6274-4cd7-90e7-60916a... | | progress | 0 | | security_groups | default | | status | BUILD |