You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/docker_image_facts/tasks/main.yml

53 lines
1.1 KiB
YAML

---
- block:
- name: Make sure image is not there
docker_image:
name: alpine:3.7
state: absent
- name: Inspect a non-available image
docker_image_facts:
name: alpine:3.7
register: result
- assert:
that:
- "result.images|length == 0"
- name: Make sure images are there
docker_image:
name: "{{ item }}"
pull: yes
state: present
loop:
- "hello-world:latest"
- "alpine:3.8"
- name: Inspect an available image
docker_image_facts:
name: hello-world:latest
register: result
- assert:
that:
- "result.images|length == 1"
- "'hello-world:latest' in result.images[0].RepoTags"
- name: Inspect multiple images
docker_image_facts:
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"
# Skip for CentOS 6
when: ansible_distribution != 'CentOS' or ansible_distribution_major_version|int > 6