Merge "[docs] Update to use openstack CLI instead of glance(v1)"
This commit is contained in:
commit
b8d3ce1b73
@ -21,23 +21,23 @@ Upload image into glance
|
|||||||
|
|
||||||
To deploy applications with murano, virtual machine images should be uploaded into glance in a special way - *murano_image_info* property should be set.
|
To deploy applications with murano, virtual machine images should be uploaded into glance in a special way - *murano_image_info* property should be set.
|
||||||
|
|
||||||
1. Use the glance image-create command to import your disk image to glance:
|
1. Use the openstack client image create command to import your disk image to glance:
|
||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
glance image-create --name <NAME> --is-public true \
|
openstack image create --public \
|
||||||
> --disk-format qcow2 --container-format bare \
|
> --disk-format qcow2 --container-format bare \
|
||||||
> --file <IMAGE_FILE> --property <IMAGE_METADATA>
|
> --file <IMAGE_FILE> --property <IMAGE_METADATA> <NAME>
|
||||||
..
|
..
|
||||||
|
|
||||||
Replace the command line arguments to glance image-create with the appropriate values for your environment and disk image:
|
Replace the command line arguments to openstack image create with the appropriate values for your environment and disk image:
|
||||||
|
|
||||||
* Replace **<NAME>** with the name that users will refer to the disk image by. E.g. **ws-2012-std**
|
|
||||||
|
|
||||||
* Replace **<IMAGE_FILE>** with the local path to the image file to upload. E.g. **ws-2012-std.qcow2**.
|
* Replace **<IMAGE_FILE>** with the local path to the image file to upload. E.g. **ws-2012-std.qcow2**.
|
||||||
|
|
||||||
* Replace **<IMAGE_METADATA>** with the following property string
|
* Replace **<IMAGE_METADATA>** with the following property string
|
||||||
|
|
||||||
|
* Replace **<NAME>** with the name that users will refer to the disk image by. E.g. **ws-2012-std**
|
||||||
|
|
||||||
.. code-block:: text
|
.. code-block:: text
|
||||||
|
|
||||||
murano_image_info='{"title": "Windows 2012 Standard Edition", "type": "windows.2012"}'
|
murano_image_info='{"title": "Windows 2012 Standard Edition", "type": "windows.2012"}'
|
||||||
@ -52,13 +52,13 @@ where:
|
|||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
glance image-update <IMAGE_ID> --property <IMAGE_MATADATA>
|
openstack image set --property <IMAGE_MATADATA> <IMAGE_ID>
|
||||||
..
|
..
|
||||||
|
|
||||||
* Replace **<IMAGE_ID>** with image id from the previous command output.
|
|
||||||
|
|
||||||
* Replace **<IMAGE_METADATA>** with murano_image_info property, e.g.
|
* Replace **<IMAGE_METADATA>** with murano_image_info property, e.g.
|
||||||
|
|
||||||
|
* Replace **<IMAGE_ID>** with image id from the previous command output.
|
||||||
|
|
||||||
.. code-block:: text
|
.. code-block:: text
|
||||||
|
|
||||||
murano_image_info='{"title": "Windows 2012 Standard Edition", "type": "windows.2012"}'
|
murano_image_info='{"title": "Windows 2012 Standard Edition", "type": "windows.2012"}'
|
||||||
|
Loading…
Reference in New Issue
Block a user