summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorSteve Baker <sbaker@redhat.com>2016-02-17 11:17:53 +1300
committerSteve Baker <sbaker@redhat.com>2016-05-27 10:57:37 +1200
commit3cde580165790f6e11dab90e9864fca1295d7895 (patch)
treebe7681c245cd74946b472b66235cac8e10062f11 /setup.cfg
parent7299dd2fdec33314a52eccef85260de79cc69801 (diff)
downloadpython-heatclient-3cde580165790f6e11dab90e9864fca1295d7895.tar.gz
Implement "openstack stack failures list"
A command which prints failed resources in the stack to help debug stack issues. Failed resources are added by recursing from the top level stack into failed nested stack resources. A failed nested stack resource is only added to the failed list if it contains no failed resources so that the user only sees root-cause failed resources. As an added convenience to debugging deployment resources, deployment outputs deploy_stdout and deploy_stderr are printed as well (the full outputs are printed when --long is specified). The output is a yamlish format where the key is a dot-delimited resource name path and the value is a dict of resource information. Change-Id: Ifa44175d8dbab2f7b62691b839e1696e3af7f4f3 Closes-Bug: #1585820
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 4d6a6c5..1f19425 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -56,6 +56,7 @@ openstack.orchestration.v1 =
stack_event_list = heatclient.osc.v1.event:ListEvent
stack_event_show = heatclient.osc.v1.event:ShowEvent
stack_environment_show = heatclient.osc.v1.stack:EnvironmentShowStack
+ stack_failures_list = heatclient.osc.v1.stack_failures:ListStackFailures
stack_hook_clear = heatclient.osc.v1.stack:StackHookClear
stack_hook_poll = heatclient.osc.v1.stack:StackHookPoll
stack_list = heatclient.osc.v1.stack:ListStack