mirror of https://github.com/ansible/ansible.git
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.
147 lines
3.6 KiB
YAML
147 lines
3.6 KiB
YAML
---
|
|
- name: Registering container name
|
|
set_fact:
|
|
cname: "{{ cname_prefix ~ '-iid' }}"
|
|
- name: Registering container name
|
|
set_fact:
|
|
cnames: "{{ cnames + [cname] }}"
|
|
|
|
- name: Pull images
|
|
docker_image:
|
|
name: "{{ image }}"
|
|
source: pull
|
|
loop:
|
|
- "hello-world:latest"
|
|
- "alpine:3.8"
|
|
loop_control:
|
|
loop_var: image
|
|
|
|
- name: Get image ID of hello-world and alpine images
|
|
docker_image_info:
|
|
name:
|
|
- "hello-world:latest"
|
|
- "alpine:3.8"
|
|
register: image_info
|
|
|
|
- assert:
|
|
that:
|
|
- image_info.images | length == 2
|
|
|
|
- name: Print image IDs
|
|
debug:
|
|
msg: "hello-world: {{ image_info.images[0].Id }}; alpine: {{ image_info.images[1].Id }}"
|
|
|
|
- name: Create container with hello-world image via ID
|
|
docker_container:
|
|
image: "{{ image_info.images[0].Id }}"
|
|
name: "{{ cname }}"
|
|
state: present
|
|
force_kill: yes
|
|
register: create_1
|
|
|
|
- name: Create container with hello-world image via ID (idempotent)
|
|
docker_container:
|
|
image: "{{ image_info.images[0].Id }}"
|
|
name: "{{ cname }}"
|
|
state: present
|
|
force_kill: yes
|
|
register: create_2
|
|
|
|
- name: Create container with alpine image via ID
|
|
docker_container:
|
|
image: "{{ image_info.images[1].Id }}"
|
|
name: "{{ cname }}"
|
|
state: present
|
|
force_kill: yes
|
|
register: create_3
|
|
|
|
- name: Create container with alpine image via ID (idempotent)
|
|
docker_container:
|
|
image: "{{ image_info.images[1].Id }}"
|
|
name: "{{ cname }}"
|
|
state: present
|
|
force_kill: yes
|
|
register: create_4
|
|
|
|
- name: Untag image
|
|
# Image will not be deleted since the container still uses it
|
|
docker_image:
|
|
name: alpine:3.8
|
|
force_absent: yes
|
|
state: absent
|
|
|
|
- name: Create container with alpine image via name (check mode, will pull, same image)
|
|
docker_container:
|
|
image: alpine:3.8
|
|
name: "{{ cname }}"
|
|
state: present
|
|
register: create_5
|
|
check_mode: yes
|
|
|
|
- name: Create container with alpine image via name (will pull, same image)
|
|
docker_container:
|
|
image: alpine:3.8
|
|
name: "{{ cname }}"
|
|
state: present
|
|
register: create_6
|
|
|
|
- name: Cleanup
|
|
docker_container:
|
|
name: "{{ cname }}"
|
|
state: absent
|
|
force_kill: yes
|
|
diff: no
|
|
|
|
- assert:
|
|
that:
|
|
- create_1 is changed
|
|
- create_2 is not changed
|
|
- create_3 is changed
|
|
- create_4 is not changed
|
|
- create_5 is changed
|
|
- create_6 is changed
|
|
- create_6.container.Image == image_info.images[1].Id
|
|
- create_6.container.Id == create_4.container.Id # make sure container wasn't recreated
|
|
|
|
- name: set Digests
|
|
set_fact:
|
|
digest_hello_world_2016: 0256e8a36e2070f7bf2d0b0763dbabdd67798512411de4cdcf9431a1feb60fd9
|
|
digest_hello_world_2019: 2557e3c07ed1e38f26e389462d03ed943586f744621577a99efb77324b0fe535
|
|
|
|
- name: Create container with hello-world image via old digest
|
|
docker_container:
|
|
image: "hello-world@sha256:{{ digest_hello_world_2016 }}"
|
|
name: "{{ cname }}"
|
|
state: present
|
|
force_kill: yes
|
|
register: digest_1
|
|
|
|
- name: Create container with hello-world image via old digest (idempotent)
|
|
docker_container:
|
|
image: "hello-world@sha256:{{ digest_hello_world_2016 }}"
|
|
name: "{{ cname }}"
|
|
state: present
|
|
force_kill: yes
|
|
register: digest_2
|
|
|
|
- name: Update container with hello-world image via new digest
|
|
docker_container:
|
|
image: "hello-world@sha256:{{ digest_hello_world_2019 }}"
|
|
name: "{{ cname }}"
|
|
state: present
|
|
force_kill: yes
|
|
register: digest_3
|
|
|
|
- name: Cleanup
|
|
docker_container:
|
|
name: "{{ cname }}"
|
|
state: absent
|
|
force_kill: yes
|
|
diff: no
|
|
|
|
- assert:
|
|
that:
|
|
- digest_1 is changed
|
|
- digest_2 is not changed
|
|
- digest_3 is changed
|