Enable stack status output for tripleo deploy

At somewhere along the line, we lost the heat stack status output
indicating what progress was being made while waiting for a stack to
build. This change sets verbosity to True for the tripleo deploy command
so that the output is always shown.

Closes-Bug: #1862188

Change-Id: Id349dbc8a554c2fa542b986062e708bbc14da714
(cherry picked from commit 76bbb37984)
This commit is contained in:
Alex Schultz 2020-02-05 13:47:31 -07:00 committed by Michele Baldessari
parent 64de0cdb5b
commit 27ce58ac77
1 changed files with 1 additions and 1 deletions

View File

@ -1265,7 +1265,7 @@ class Deploy(command.Command):
# Wait for complete..
status = utils.wait_for_stack_ready(orchestration_client, stack_id,
nested_depth=6)
verbose=True, nested_depth=6)
if not status:
message = _("Stack create failed")
self.log.error(message)