[install] use python-openstackclient instead of python-heatclient
The heat CLI is deprecated, the openstack CLI should be used: Change-Id: Ia1c9cb770945f804a00aa865a90d486bf35201ba
This commit is contained in:
parent
0db38280e5
commit
ab191d45b0
@ -20,7 +20,7 @@ Verify operation of the Orchestration service.
|
|||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
$ heat service-list
|
$ openstack orchestration service list
|
||||||
+------------+-------------+--------------------------------------+------------+--------+----------------------------+--------+
|
+------------+-------------+--------------------------------------+------------+--------+----------------------------+--------+
|
||||||
| hostname | binary | engine_id | host | topic | updated_at | status |
|
| hostname | binary | engine_id | host | topic | updated_at | status |
|
||||||
+------------+-------------+--------------------------------------+------------+--------+----------------------------+--------+
|
+------------+-------------+--------------------------------------+------------+--------+----------------------------+--------+
|
||||||
|
@ -82,9 +82,9 @@ Create a stack using the ``demo-template.yml`` template.
|
|||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
$ heat stack-create -f demo-template.yml -P "NetID=$NET_ID" stack
|
$ openstack stack create -t demo-template.yml --parameter "NetID=$NET_ID" stack
|
||||||
+--------------------------------------+------------+--------------------+---------------------+--------------+
|
+--------------------------------------+------------+--------------------+---------------------+--------------+
|
||||||
| id | stack_name | stack_status | creation_time | updated_time |
|
| ID | Stack Name | Stack Status | Creation Time | Updated Time |
|
||||||
+--------------------------------------+------------+--------------------+---------------------+--------------+
|
+--------------------------------------+------------+--------------------+---------------------+--------------+
|
||||||
| dbf46d1b-0b97-4d45-a0b3-9662a1eb6cf3 | stack | CREATE_IN_PROGRESS | 2015-10-13T15:27:20 | None |
|
| dbf46d1b-0b97-4d45-a0b3-9662a1eb6cf3 | stack | CREATE_IN_PROGRESS | 2015-10-13T15:27:20 | None |
|
||||||
+--------------------------------------+------------+--------------------+---------------------+--------------+
|
+--------------------------------------+------------+--------------------+---------------------+--------------+
|
||||||
@ -93,9 +93,9 @@ Create a stack using the ``demo-template.yml`` template.
|
|||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
$ heat stack-list
|
$ openstack stack list
|
||||||
+--------------------------------------+------------+-----------------+---------------------+--------------+
|
+--------------------------------------+------------+-----------------+---------------------+--------------+
|
||||||
| id | stack_name | stack_status | creation_time | updated_time |
|
| ID | Stack Name | Stack Status | Creation Time | Updated Time |
|
||||||
+--------------------------------------+------------+-----------------+---------------------+--------------+
|
+--------------------------------------+------------+-----------------+---------------------+--------------+
|
||||||
| dbf46d1b-0b97-4d45-a0b3-9662a1eb6cf3 | stack | CREATE_COMPLETE | 2015-10-13T15:27:20 | None |
|
| dbf46d1b-0b97-4d45-a0b3-9662a1eb6cf3 | stack | CREATE_COMPLETE | 2015-10-13T15:27:20 | None |
|
||||||
+--------------------------------------+------------+-----------------+---------------------+--------------+
|
+--------------------------------------+------------+-----------------+---------------------+--------------+
|
||||||
@ -105,7 +105,7 @@ Create a stack using the ``demo-template.yml`` template.
|
|||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
$ heat output-show --all stack
|
$ openstack stack output show --all stack
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"output_value": "stack-server-3nzfyfofu6d4",
|
"output_value": "stack-server-3nzfyfofu6d4",
|
||||||
@ -132,4 +132,4 @@ Create a stack using the ``demo-template.yml`` template.
|
|||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
$ heat stack-delete stack
|
$ openstack stack delete --yes stack
|
||||||
|
Loading…
Reference in New Issue
Block a user