Fix image push when overriding awx_image_tag

This commit is contained in:
Shane McDonald 2022-02-12 13:27:12 -05:00
parent b26c1c16b9
commit e70059ed6b

View File

@ -12,11 +12,11 @@
- name: Tag and Push Container Images
docker_image:
name: "{{ awx_image }}:{{ awx_version }}"
name: "{{ awx_image }}:{{ awx_image_tag }}"
repository: "{{ registry }}/{{ awx_image }}:{{ item }}"
force_tag: yes
push: true
source: local
with_items:
- "latest"
- "{{ awx_version }}"
- "{{ awx_image_tag }}"