2018-10-26 02:51:41 +02:00
---
- block :
- name : Make sure image is not there
docker_image :
name : alpine:3.7
state : absent
- name : Inspect a non-available image
2019-03-21 09:37:18 +01:00
docker_image_info :
2018-10-26 02:51:41 +02:00
name : alpine:3.7
register : result
- assert :
that :
- "result.images|length == 0"
- name : Make sure images are there
docker_image :
name : "{{ item }}"
2019-04-17 19:50:57 +02:00
source : pull
2018-10-26 02:51:41 +02:00
state : present
loop :
- "hello-world:latest"
- "alpine:3.8"
- name : Inspect an available image
2019-03-21 09:37:18 +01:00
docker_image_info :
2018-10-26 02:51:41 +02:00
name : hello-world:latest
register : result
- assert :
that :
- "result.images|length == 1"
- "'hello-world:latest' in result.images[0].RepoTags"
- name : Inspect multiple images
2019-03-21 09:37:18 +01:00
docker_image_info :
2018-10-26 02:51:41 +02:00
name :
- "hello-world:latest"
- "alpine:3.8"
register : result
- debug : var=result
- assert :
that :
- "result.images|length == 2"
- "'hello-world:latest' in result.images[0].RepoTags"
- "'alpine:3.8' in result.images[1].RepoTags"
2018-11-19 11:01:40 +01:00
when : docker_py_version is version('1.8.0', '>=') and docker_api_version is version('1.20', '>=')
2019-03-21 09:37:18 +01:00
- fail : msg="Too old docker / docker-py version to run docker_image_info tests!"
2018-11-19 11:01:40 +01:00
when : not(docker_py_version is version('1.8.0', '>=') and docker_api_version is version('1.20', '>=')) and (ansible_distribution != 'CentOS' or ansible_distribution_major_version|int > 6)