use fqcns for some task

Signed-off-by: Sebastian Gumprich <github@gumpri.ch>
This commit is contained in:
Sebastian Gumprich
2022-10-28 13:20:17 +02:00
parent 582a73b027
commit 48388a3d96
103 changed files with 159 additions and 159 deletions

View File

@ -48,7 +48,7 @@
when: "item.when | bool"
- name: Ensure matrix-registration image is pulled
docker_image:
community.docker.docker_image:
name: "{{ matrix_registration_docker_image }}"
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
force_source: "{{ matrix_registration_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
@ -79,7 +79,7 @@
when: "matrix_registration_container_image_self_build | bool and matrix_registration_container_image_self_build_python_dependencies_patch_enabled | bool"
- name: Ensure matrix-registration Docker image is built
docker_image:
community.docker.docker_image:
name: "{{ matrix_registration_docker_image }}"
source: build
force_source: "{{ matrix_registration_git_pull_results.changed if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"

View File

@ -26,6 +26,6 @@
when: "matrix_registration_service_stat.stat.exists | bool"
- name: Ensure matrix-registration Docker image doesn't exist
docker_image:
community.docker.docker_image:
name: "{{ matrix_registration_docker_image }}"
state: absent