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.

Change-Id: Id349dbc8a554c2fa542b986062e708bbc14da714
This commit is contained in:
Alex Schultz 2020-02-05 13:47:31 -07:00
parent 0ee171b5e1
commit 76bbb37984
1 changed files with 1 additions and 1 deletions

View File

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