mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-16 20:08:41 +00:00
* Add docker_image_load module. * Polish module. * Fix bug and add tests. * Apply suggestions from code review Co-authored-by: Amin Vakil <info@aminvakil.com> * Make sure that containers that still exist are also cleared. * Always return stdout. * Try to work around removal problems. * Accept that the Docker daemon sometimes only reports the named image. * More debug output. * Also prune containers, in the hope that these cause the problems. * Let's see whether pruning containers (but not images) is enough. * Apply suggestions from code review Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/docker_image_load.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> Co-authored-by: Amin Vakil <info@aminvakil.com> Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
35 lines
1022 B
YAML
35 lines
1022 B
YAML
---
|
|
- name: Create random name prefix
|
|
set_fact:
|
|
name_prefix: "{{ 'ansible-test-%0x' % ((2**32) | random) }}"
|
|
- name: Create image and container list
|
|
set_fact:
|
|
inames: []
|
|
cnames: []
|
|
|
|
- debug:
|
|
msg: "Using name prefix {{ name_prefix }}"
|
|
|
|
- block:
|
|
- include_tasks: run-test.yml
|
|
with_fileglob:
|
|
- "tests/*.yml"
|
|
|
|
always:
|
|
- name: "Make sure all images are removed"
|
|
docker_image:
|
|
name: "{{ item }}"
|
|
state: absent
|
|
with_items: "{{ inames }}"
|
|
- name: "Make sure all containers are removed"
|
|
docker_container:
|
|
name: "{{ item }}"
|
|
state: absent
|
|
force_kill: yes
|
|
with_items: "{{ cnames }}"
|
|
|
|
when: docker_py_version is version('2.5.0', '>=') and docker_api_version is version('1.23', '>=')
|
|
|
|
- fail: msg="Too old docker / docker-py version to run docker_image tests!"
|
|
when: not(docker_py_version is version('2.5.0', '>=') and docker_api_version is version('1.23', '>=')) and (ansible_distribution != 'CentOS' or ansible_distribution_major_version|int > 6)
|