Fix paunch logs verbosity control

Make ConfigDebug also controlling the paunch logs verbosity.

Depends-On: https://review.openstack.org/614166
Related-Bug: #1799182

Change-Id: I89fd73eaa2120f06ab245be148a60bb08f0cb512
Signed-off-by: Bogdan Dobrelya <bdobreli@redhat.com>
This commit is contained in:
Bogdan Dobrelya 2018-10-24 10:40:48 +02:00
parent d747625b82
commit c5d1b6fb63
3 changed files with 6 additions and 2 deletions

View File

@ -480,7 +480,7 @@
# This acts as a salt to enable restarting the container if config changes
- name: Start containers for step {{ step }}
command: >-
paunch --debug apply
paunch {% if enable_debug|bool %}--debug{% else %}-v{% endif %} apply
--default-runtime "{{ container_cli }}"
--file /var/lib/tripleo-config/hashed-docker-container-startup-config-step_{{ step }}.json
--config-id tripleo_step{{ step }} --managed-by tripleo-{{ tripleo_role_name }}

View File

@ -1,5 +1,5 @@
# A Heat environment file which can be used to enable config
# management (e.g. Puppet) debugging.
# management (e.g. Puppet/Paunch) debugging.
parameter_defaults:
ConfigDebug: true

View File

@ -0,0 +1,4 @@
---
other:
- |
Paramter ``ConfigDebug`` now also controls the paunch logs verbosity.