2019-01-03 14:34:37 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Create image directory
|
|
|
|
file:
|
|
|
|
state: directory
|
2019-04-24 20:34:46 +00:00
|
|
|
path: "{{ images_dir }}"
|
2021-07-12 07:00:47 +00:00
|
|
|
mode: 0755
|
2019-01-03 14:34:37 +00:00
|
|
|
|
|
|
|
- name: Download images files
|
|
|
|
get_url:
|
|
|
|
url: "{{ item.value.url }}"
|
|
|
|
dest: "{{ images_dir }}/{{ item.value.filename }}"
|
|
|
|
checksum: "{{ item.value.checksum }}"
|
2021-04-05 20:45:19 +00:00
|
|
|
loop: "{{ images|dict2items }}"
|
2019-01-03 14:34:37 +00:00
|
|
|
|
2020-07-10 08:07:48 +00:00
|
|
|
- name: Unxz compressed images
|
|
|
|
command: unxz --force {{ images_dir }}/{{ item.value.filename }}
|
2021-04-05 20:45:19 +00:00
|
|
|
loop: "{{ images|dict2items }}"
|
2020-07-10 08:07:48 +00:00
|
|
|
when:
|
|
|
|
- item.value.filename.endswith('.xz')
|
|
|
|
|
2019-01-03 14:34:37 +00:00
|
|
|
- name: Convert images which is not in qcow2 format
|
2020-07-10 08:07:48 +00:00
|
|
|
command: qemu-img convert -O qcow2 {{ images_dir }}/{{ item.value.filename.rstrip('.xz') }} {{ images_dir }}/{{ item.key }}.qcow2
|
2021-04-05 20:45:19 +00:00
|
|
|
loop: "{{ images|dict2items }}"
|
2019-01-03 14:34:37 +00:00
|
|
|
when:
|
2019-04-17 15:42:03 +00:00
|
|
|
- not (item.value.converted|bool)
|
2019-01-03 14:34:37 +00:00
|
|
|
|
|
|
|
- name: Make sure all images are ending with qcow2
|
2020-07-10 08:07:48 +00:00
|
|
|
command: cp {{ images_dir }}/{{ item.value.filename.rstrip('.xz') }} {{ images_dir }}/{{ item.key }}.qcow2
|
2021-04-05 20:45:19 +00:00
|
|
|
loop: "{{ images|dict2items }}"
|
2019-01-03 14:34:37 +00:00
|
|
|
when:
|
2019-04-17 15:42:03 +00:00
|
|
|
- item.value.converted|bool
|
2019-01-03 14:34:37 +00:00
|
|
|
|
2020-07-27 13:24:17 +00:00
|
|
|
- name: Resize images # noqa 301
|
2019-01-03 14:34:37 +00:00
|
|
|
command: qemu-img resize {{ images_dir }}/{{ item.key }}.qcow2 +8G
|
2021-04-05 20:45:19 +00:00
|
|
|
loop: "{{ images|dict2items }}"
|
2019-01-03 14:34:37 +00:00
|
|
|
|
|
|
|
# STEP 2: Include the images inside a container
|
|
|
|
- name: Template default Dockerfile
|
|
|
|
template:
|
|
|
|
src: Dockerfile
|
|
|
|
dest: "{{ images_dir }}/Dockerfile"
|
2021-07-12 07:00:47 +00:00
|
|
|
mode: 0644
|
2019-01-03 14:34:37 +00:00
|
|
|
|
2020-07-27 13:24:17 +00:00
|
|
|
- name: Create docker images for each OS # noqa 301
|
2020-10-21 11:08:20 +00:00
|
|
|
command: docker build -t {{ registry }}/vm-{{ item.key }}:{{ item.value.tag }} --build-arg cloud_image="{{ item.key }}.qcow2" {{ images_dir }}
|
2021-04-05 20:45:19 +00:00
|
|
|
loop: "{{ images|dict2items }}"
|
2019-01-03 14:34:37 +00:00
|
|
|
|
2020-07-27 13:24:17 +00:00
|
|
|
- name: docker login # noqa 301
|
2019-01-03 14:34:37 +00:00
|
|
|
command: docker login -u="{{ docker_user }}" -p="{{ docker_password }}" "{{ docker_host }}"
|
|
|
|
|
2020-07-27 13:24:17 +00:00
|
|
|
- name: docker push image # noqa 301
|
2020-10-21 11:08:20 +00:00
|
|
|
command: docker push {{ registry }}/vm-{{ item.key }}:{{ item.value.tag }}
|
2021-04-05 20:45:19 +00:00
|
|
|
loop: "{{ images|dict2items }}"
|
2020-10-21 11:08:20 +00:00
|
|
|
|
|
|
|
- name: docker logout # noqa 301
|
|
|
|
command: docker logout -u="{{ docker_user }}" "{{ docker_host }}"
|