Temporarily disable no_log for podmans info task

In order to investigate the issue, let's disable no_log.

Related-Bug: #1926649
Change-Id: I30861aa289355efff0d39d373e3f20e95d1094cc
This commit is contained in:
Sagi Shnaidman 2021-05-04 13:47:56 +03:00
parent cec79b26a8
commit 1136ca69fe
2 changed files with 4 additions and 2 deletions

View File

@ -17,7 +17,8 @@
- name: Gather podman infos
podman_container_info: {}
register: podman_containers
no_log: "{{ not (tripleo_container_manage_debug | bool) }}"
# Temporarily disable no_log for this task to debug #1926649
no_log: false # "{{ not (tripleo_container_manage_debug | bool) }}"
when:
- tripleo_container_manage_cli == 'podman'

View File

@ -17,7 +17,8 @@
- name: Gather podman infos
podman_container_info: {}
register: podman_containers
no_log: "{{ tripleo_container_manage_hide_sensitive_logs | bool }}"
# Temporarily disable no_log for this task to debug #1926649
no_log: false # "{{ tripleo_container_manage_hide_sensitive_logs | bool }}"
when:
- tripleo_container_manage_cli == 'podman'