Merge pull request #11734 from shanemcd/fix-image-push

Fix image push when overriding awx_image_tag
This commit is contained in:
Shane McDonald 2022-02-17 07:21:29 -05:00 committed by GitHub
commit d9749e8975
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 }}"