Don't force verbosity of 1 for config-download
Instead, honor the value of verbosity that was specified on the command line. This will make the ansible tasks less verbose by default, so that we don't have to add no_log everywhere which actually ends up hiding useful output. Change-Id: Ib5060a3e9679b105c76c3c72011c23aee0093dc1
This commit is contained in:
parent
0989e39c43
commit
648cc2bc7d
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- The verbosity of the config-download ansible tasks for deployment are now
|
||||||
|
controlled by the verbosity level specified on the command line.
|
@ -299,7 +299,7 @@ def config_download(log, clients, stack, templates,
|
|||||||
tripleoclients = clients.tripleoclient
|
tripleoclients = clients.tripleoclient
|
||||||
|
|
||||||
workflow_input = {
|
workflow_input = {
|
||||||
'verbosity': verbosity or 1,
|
'verbosity': verbosity,
|
||||||
'plan_name': stack.stack_name,
|
'plan_name': stack.stack_name,
|
||||||
'ssh_network': ssh_network,
|
'ssh_network': ssh_network,
|
||||||
'config_download_timeout': timeout
|
'config_download_timeout': timeout
|
||||||
|
Loading…
Reference in New Issue
Block a user