From 057f41345b914993663e7996b69024e0c6c5c65c Mon Sep 17 00:00:00 2001 From: Alex Schultz Date: Sat, 20 Feb 2021 19:30:16 -0700 Subject: [PATCH] Add no log to podman set_fact If you run ansible with -v, the data in the set_fact task may be logged. We don't want that for these tasks. Change-Id: Ic6e4477c2218cf7586e70df8de7c47b798e79656 --- deployment/podman/podman-baremetal-ansible.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deployment/podman/podman-baremetal-ansible.yaml b/deployment/podman/podman-baremetal-ansible.yaml index 4088e9d757..65a84bc132 100644 --- a/deployment/podman/podman-baremetal-ansible.yaml +++ b/deployment/podman/podman-baremetal-ansible.yaml @@ -77,6 +77,7 @@ outputs: - name: Install and configure Podman block: &install_and_configure_podman - name: Set login facts + no_log: true set_fact: container_registry_insecure_registries: if: @@ -90,6 +91,7 @@ outputs: container_default_pids_limit: {get_param: ContainerDefaultPidsLimit} - name: Convert logins json to dict + no_log: true set_fact: container_registry_logins: "{{ container_registry_logins_json | from_json }}" when: @@ -98,6 +100,7 @@ outputs: - (container_registry_logins_json | length) > 0 - name: Set registry logins + no_log: true set_fact: container_registry_logins: "{{ container_registry_logins_json }}" when: