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

View File

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