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 }}"
|
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 }}"
|
|
|
|
with_dict:
|
|
|
|
- "{{ images }}"
|
|
|
|
|
|
|
|
- name: Convert images which is not in qcow2 format
|
|
|
|
command: qemu-img convert -O qcow2 {{ images_dir }}/{{ item.value.filename }} {{ images_dir }}/{{ item.key }}.qcow2
|
|
|
|
with_dict:
|
|
|
|
- "{{ images }}"
|
|
|
|
when:
|
2019-04-17 15:42:03 +00:00
|
|
|
- not (item.value.converted|bool)
|
2019-01-03 14:34:37 +00:00
|
|
|
register: converted
|
|
|
|
|
|
|
|
- name: Make sure all images are ending with qcow2
|
|
|
|
command: cp {{ images_dir }}/{{ item.value.filename }} {{ images_dir }}/{{ item.key }}.qcow2
|
|
|
|
with_dict:
|
|
|
|
- "{{ images }}"
|
|
|
|
when:
|
2019-04-17 15:42:03 +00:00
|
|
|
- item.value.converted|bool
|
2019-01-03 14:34:37 +00:00
|
|
|
|
|
|
|
- name: Resize images
|
|
|
|
command: qemu-img resize {{ images_dir }}/{{ item.key }}.qcow2 +8G
|
|
|
|
with_dict:
|
|
|
|
- "{{ images }}"
|
|
|
|
|
|
|
|
# STEP 2: Include the images inside a container
|
|
|
|
- name: Template default Dockerfile
|
|
|
|
template:
|
|
|
|
src: Dockerfile
|
|
|
|
dest: "{{ images_dir }}/Dockerfile"
|
|
|
|
|
|
|
|
- name: Create docker images for each OS
|
|
|
|
command: docker build -t {{registry}}/vm-{{ item.key }} --build-arg cloud_image="{{ item.key }}.qcow2" {{ images_dir }}
|
|
|
|
with_dict:
|
|
|
|
- "{{ images }}"
|
|
|
|
|
|
|
|
- name: docker login
|
|
|
|
command: docker login -u="{{ docker_user }}" -p="{{ docker_password }}" "{{ docker_host }}"
|
|
|
|
|
|
|
|
- name: docker push image
|
|
|
|
command: docker push {{ registry }}/vm-{{ item.key }}:latest
|
|
|
|
with_dict:
|
|
|
|
- "{{ images }}"
|