[admin-guide] use openstack CLI instead of heat CLI

The heat CLI is deprecated at now.

Change-Id: I3e0493c6b2b958919b87852b68380c6d1ef7cdc7
Partial-Bug: #1581726
This commit is contained in:
KATO Tomoyuki 2016-06-06 20:45:00 +09:00
parent 8872ab7006
commit fa00454573
2 changed files with 14 additions and 8 deletions

View File

@ -19,10 +19,16 @@ high availability.
For information about:
- basic creation and deletion of Orchestration stacks, refer
to the `OpenStack End User Guide <http://docs.openstack.org/user-guide/dashboard_stacks.html>`_
to the `OpenStack End User Guide
<http://docs.openstack.org/user-guide/dashboard_stacks.html>`_
- **heat** CLI commands, see the `OpenStack Command Line Interface Reference
<http://docs.openstack.org/cli-reference/heat.html>`_
- **openstack** CLI, see the `OpenStack Command-Line Interface
Reference <http://docs.openstack.org/cli-reference/openstack.html>`_
.. note::
The ``heat`` CLI is deprecated in favor of ``python-openstackclient``.
For a Python library, continue using ``python-heatclient``.
As an administrator, you can also carry out stack functions
on behalf of your users. For example, to resume, suspend,
@ -30,6 +36,6 @@ or delete a stack, run:
.. code-block:: console
$ heat action-resume stackID
$ heat action-suspend stackID
$ heat stack-delete stackID
$ openstack stack resume STACK
$ openstack stack suspend STACK
$ openstack stack delete STACK

View File

@ -147,6 +147,6 @@ or::
GET v1/{stack_domain_project_id}/stacks/{stack_name}/\
{stack_id}/resources/{resource_name}/metadata
The stack owner uses the former (via ``heat resource-metadata
{stack_name} {resource_name}``), and any agents in the instance
The stack owner uses the former (via ``openstack stack resource metadata
STACK RESOURCE``), and any agents in the instance
use the latter.