7516fe142f
* Ansible: move to Ansible 3.4.0 which uses ansible-base 2.10.10 * Docs: add a note about ansible upgrade post 2.9.x * CI: ensure ansible is removed before ansible 3.x is installed to avoid pip failures * Ansible: use newer ansible-lint * Fix ansible-lint 5.0.11 found issues * syntax issues * risky-file-permissions * var-naming * role-name * molecule tests * Mitogen: use 0.3.0rc1 which adds support for ansible 2.10+ * Pin ansible-base to 2.10.11 to get package fix on RHEL8
57 lines
1.9 KiB
YAML
57 lines
1.9 KiB
YAML
---
|
|
|
|
- name: Create image directory
|
|
file:
|
|
state: directory
|
|
path: "{{ images_dir }}"
|
|
mode: 0755
|
|
|
|
- name: Download images files
|
|
get_url:
|
|
url: "{{ item.value.url }}"
|
|
dest: "{{ images_dir }}/{{ item.value.filename }}"
|
|
checksum: "{{ item.value.checksum }}"
|
|
loop: "{{ images|dict2items }}"
|
|
|
|
- name: Unxz compressed images
|
|
command: unxz --force {{ images_dir }}/{{ item.value.filename }}
|
|
loop: "{{ images|dict2items }}"
|
|
when:
|
|
- item.value.filename.endswith('.xz')
|
|
|
|
- name: Convert images which is not in qcow2 format
|
|
command: qemu-img convert -O qcow2 {{ images_dir }}/{{ item.value.filename.rstrip('.xz') }} {{ images_dir }}/{{ item.key }}.qcow2
|
|
loop: "{{ images|dict2items }}"
|
|
when:
|
|
- not (item.value.converted|bool)
|
|
|
|
- name: Make sure all images are ending with qcow2
|
|
command: cp {{ images_dir }}/{{ item.value.filename.rstrip('.xz') }} {{ images_dir }}/{{ item.key }}.qcow2
|
|
loop: "{{ images|dict2items }}"
|
|
when:
|
|
- item.value.converted|bool
|
|
|
|
- name: Resize images # noqa 301
|
|
command: qemu-img resize {{ images_dir }}/{{ item.key }}.qcow2 +8G
|
|
loop: "{{ images|dict2items }}"
|
|
|
|
# STEP 2: Include the images inside a container
|
|
- name: Template default Dockerfile
|
|
template:
|
|
src: Dockerfile
|
|
dest: "{{ images_dir }}/Dockerfile"
|
|
mode: 0644
|
|
|
|
- name: Create docker images for each OS # noqa 301
|
|
command: docker build -t {{ registry }}/vm-{{ item.key }}:{{ item.value.tag }} --build-arg cloud_image="{{ item.key }}.qcow2" {{ images_dir }}
|
|
loop: "{{ images|dict2items }}"
|
|
|
|
- name: docker login # noqa 301
|
|
command: docker login -u="{{ docker_user }}" -p="{{ docker_password }}" "{{ docker_host }}"
|
|
|
|
- name: docker push image # noqa 301
|
|
command: docker push {{ registry }}/vm-{{ item.key }}:{{ item.value.tag }}
|
|
loop: "{{ images|dict2items }}"
|
|
|
|
- name: docker logout # noqa 301
|
|
command: docker logout -u="{{ docker_user }}" "{{ docker_host }}"
|