2016-12-19 14:50:04 +00:00
|
|
|
---
|
|
|
|
- set_fact:
|
|
|
|
pull_by_digest: >-
|
|
|
|
{%- if download.sha256 is defined and download.sha256 != '' -%}true{%- else -%}false{%- endif -%}
|
|
|
|
|
|
|
|
- set_fact:
|
|
|
|
pull_args: >-
|
|
|
|
{%- if pull_by_digest|bool %}{{download.repo}}@sha256:{{download.sha256}}{%- else -%}{{download.repo}}:{{download.tag}}{%- endif -%}
|
|
|
|
|
|
|
|
- name: Register docker images info
|
2017-01-17 08:20:25 +00:00
|
|
|
raw: >-
|
|
|
|
{{ docker_bin_dir }}/docker images -q | xargs {{ docker_bin_dir }}/docker inspect -f "{{ '{{' }} .RepoTags {{ '}}' }},{{ '{{' }} .RepoDigests {{ '}}' }}"
|
2017-02-18 10:13:30 +00:00
|
|
|
no_log: true
|
2016-12-19 14:50:04 +00:00
|
|
|
register: docker_images_raw
|
2016-12-27 11:38:54 +00:00
|
|
|
failed_when: false
|
2017-02-06 18:13:21 +00:00
|
|
|
check_mode: no
|
2016-12-19 14:50:04 +00:00
|
|
|
when: not download_always_pull|bool
|
|
|
|
|
2017-02-17 21:22:34 +00:00
|
|
|
- set_fact:
|
2017-02-17 22:30:39 +00:00
|
|
|
docker_images: "{{docker_images_raw.stdout|regex_replace('\\[|\\]|\\n]','')|regex_replace('\\s',',')}}"
|
2017-02-18 10:13:30 +00:00
|
|
|
no_log: true
|
2016-12-19 14:50:04 +00:00
|
|
|
when: not download_always_pull|bool
|
|
|
|
|
|
|
|
- set_fact:
|
|
|
|
pull_required: >-
|
|
|
|
{%- if pull_args in docker_images.split(',') %}false{%- else -%}true{%- endif -%}
|
|
|
|
when: not download_always_pull|bool
|
|
|
|
|
|
|
|
- name: Check the local digest sha256 corresponds to the given image tag
|
|
|
|
assert:
|
|
|
|
that: "{{download.repo}}:{{download.tag}} in docker_images.split(',')"
|
|
|
|
when: not download_always_pull|bool and not pull_required|bool and pull_by_digest|bool
|