Merge "Temporarily disable no_log for podmans info task"

This commit is contained in:
Zuul 2021-05-05 01:19:37 +00:00 committed by Gerrit Code Review
commit 509e630baa
2 changed files with 4 additions and 2 deletions

View File

@ -17,7 +17,8 @@
- name: Gather podman infos - name: Gather podman infos
podman_container_info: {} podman_container_info: {}
register: podman_containers 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: when:
- tripleo_container_manage_cli == 'podman' - tripleo_container_manage_cli == 'podman'

View File

@ -17,7 +17,8 @@
- name: Gather podman infos - name: Gather podman infos
podman_container_info: {} podman_container_info: {}
register: podman_containers 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: when:
- tripleo_container_manage_cli == 'podman' - tripleo_container_manage_cli == 'podman'