2016-12-19 14:50:04 +00:00
|
|
|
---
|
|
|
|
- set_fact:
|
|
|
|
pull_by_digest: >-
|
2019-04-29 06:00:20 +00:00
|
|
|
{%- if download.sha256 is defined and download.sha256 -%}true{%- else -%}false{%- endif -%}
|
2016-12-19 14:50:04 +00:00
|
|
|
|
|
|
|
- set_fact:
|
|
|
|
pull_args: >-
|
2017-10-19 08:17:11 +00:00
|
|
|
{%- if pull_by_digest %}{{download.repo}}@sha256:{{download.sha256}}{%- else -%}{{download.repo}}:{{download.tag}}{%- endif -%}
|
2016-12-19 14:50:04 +00:00
|
|
|
|
|
|
|
- name: Register docker images info
|
2018-11-06 19:07:11 +00:00
|
|
|
shell: >-
|
2019-05-01 08:10:56 +00:00
|
|
|
{{ docker_bin_dir }}/docker images -q | xargs -r {{ docker_bin_dir }}/docker inspect -f "{{ '{{' }} if .RepoTags {{ '}}' }}{{ '{{' }} (index .RepoTags) {{ '}}' }}{{ '{{' }} end {{ '}}' }}{{ '{{' }} if .RepoDigests {{ '}}' }},{{ '{{' }} (index .RepoDigests) {{ '}}' }}{{ '{{' }} end {{ '}}' }}" | sed -e 's/^ *\[//g' -e 's/\] *$//g' -e 's/ /\n/g' | tr '\n' ','
|
2017-02-18 10:13:30 +00:00
|
|
|
no_log: true
|
2017-09-09 20:32:12 +00:00
|
|
|
register: docker_images
|
2016-12-27 11:38:54 +00:00
|
|
|
failed_when: false
|
2017-03-15 11:00:42 +00:00
|
|
|
changed_when: false
|
2017-02-06 18:13:21 +00:00
|
|
|
check_mode: no
|
2017-10-19 08:17:11 +00:00
|
|
|
when: not download_always_pull
|
2016-12-19 14:50:04 +00:00
|
|
|
|
|
|
|
- set_fact:
|
|
|
|
pull_required: >-
|
2017-09-09 20:32:12 +00:00
|
|
|
{%- if pull_args in docker_images.stdout.split(',') %}false{%- else -%}true{%- endif -%}
|
2017-10-19 08:17:11 +00:00
|
|
|
when: not download_always_pull
|
2016-12-19 14:50:04 +00:00
|
|
|
|
2019-05-01 08:10:56 +00:00
|
|
|
- name: Does any host require container pull?
|
|
|
|
vars:
|
|
|
|
hosts_pull_required: "{{ hostvars.values() | map(attribute='pull_required') | select('defined') | list }}"
|
|
|
|
set_fact:
|
|
|
|
any_pull_required: "{{ True in hosts_pull_required }}"
|
|
|
|
run_once: true
|
|
|
|
changed_when: false
|
|
|
|
when: not download_always_pull
|
|
|
|
|
2016-12-19 14:50:04 +00:00
|
|
|
- name: Check the local digest sha256 corresponds to the given image tag
|
|
|
|
assert:
|
2017-09-09 20:32:12 +00:00
|
|
|
that: "{{download.repo}}:{{download.tag}} in docker_images.stdout.split(',')"
|
2019-04-29 06:00:20 +00:00
|
|
|
when:
|
|
|
|
- not download_always_pull
|
|
|
|
- not pull_required
|
|
|
|
- pull_by_digest
|
2017-09-25 07:41:03 +00:00
|
|
|
tags:
|
|
|
|
- asserts
|