diff options
author | Lars Kellogg-Stedman <lars@redhat.com> | 2014-02-14 17:52:01 -0500 |
---|---|---|
committer | Lars Kellogg-Stedman <lars@redhat.com> | 2014-02-20 10:40:56 -0500 |
commit | 60f3de47e36eebbcf4cde4655096e73d0dc24f3e (patch) | |
tree | 1f45b1cf9343296ac1ce4ec5a10ccc808fde355b /doc | |
parent | 5458fe691ee7edc71b8670e4be6db39e2426ff05 (diff) | |
download | python-heatclient-60f3de47e36eebbcf4cde4655096e73d0dc24f3e.tar.gz |
add output-list and output-show
This patch adds the "output-list" and "output-show" commands to heat.
The first prints a table of available outputs to stdout, and the second
prints a single output_value to stdout.
All outputs are serialized to JSON.
This patch includes tests for the new commands as well as updated
documentation.
Implements blueprint: stack-outputs-in-shell
Change-Id: Iaade16d043b2c42d14f642fde17419eaa07d0ab8
Closes-Bug: 1258622
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/man/heat.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/source/man/heat.rst b/doc/source/man/heat.rst index 6624e57..5da86af 100644 --- a/doc/source/man/heat.rst +++ b/doc/source/man/heat.rst @@ -61,6 +61,14 @@ View stack information:: heat stack-show mystack +List stack outputs:: + + heat output-list <stack name> + +Show the value of a single output:: + + heat output-show <stack name> <output key> + List events:: heat event-list mystack |