Replace raw module with shell to avoid warning (#3652)

This commit is contained in:
Erwan Miran 2018-11-06 20:07:11 +01:00 committed by k8s-ci-robot
parent b316518864
commit 14c2df0418
2 changed files with 2 additions and 4 deletions

View file

@ -1,13 +1,12 @@
---
- name: Register docker images info
raw: >-
shell: >-
{{ docker_bin_dir }}/docker images -q | xargs {{ docker_bin_dir }}/docker inspect -f "{{ '{{' }} (index .RepoTags 0) {{ '}}' }},{{ '{{' }} (index .RepoDigests 0) {{ '}}' }}" | tr '\n' ','
no_log: true
register: docker_images
failed_when: false
changed_when: false
check_mode: no
environment: {}
when: download_container
- name: container_download | Create dest directory for saved/loaded container images

View file

@ -8,14 +8,13 @@
{%- if pull_by_digest %}{{download.repo}}@sha256:{{download.sha256}}{%- else -%}{{download.repo}}:{{download.tag}}{%- endif -%}
- name: Register docker images info
raw: >-
shell: >-
{{ docker_bin_dir }}/docker images -q | xargs {{ docker_bin_dir }}/docker inspect -f "{{ '{{' }} if .RepoTags {{ '}}' }}{{ '{{' }} (index .RepoTags 0) {{ '}}' }}{{ '{{' }} end {{ '}}' }}{{ '{{' }} if .RepoDigests {{ '}}' }},{{ '{{' }} (index .RepoDigests 0) {{ '}}' }}{{ '{{' }} end {{ '}}' }}" | tr '\n' ','
no_log: true
register: docker_images
failed_when: false
changed_when: false
check_mode: no
environment: {}
when: not download_always_pull
- set_fact: