mirror of
https://github.com/ansible/awx.git
synced 2026-01-24 07:51:23 -03:30
allow for private registry without latest tag
The logic that sets awx_web_docker_actual_image and awx_task_docker_actual_image creates and pushes images to the private registry tagged with the awx version, which is appropriate, but then tries to pull with no tag. (so docker defaults to "latest", which does not exist)
This commit is contained in:
parent
ad0e43dc52
commit
ee15db4c7c
@ -85,8 +85,10 @@
|
||||
|
||||
- name: Set full image path for Registry
|
||||
set_fact:
|
||||
awx_web_docker_actual_image: "{{ docker_registry }}/{{ docker_registry_repository }}/{{ awx_web_image }}"
|
||||
awx_task_docker_actual_image: "{{ docker_registry }}/{{ docker_registry_repository }}/{{ awx_task_image }}"
|
||||
awx_web_docker_actual_image: >-
|
||||
{{ docker_registry }}/{{ docker_registry_repository }}/{{ awx_web_image }}:{{ awx_version }}
|
||||
awx_task_docker_actual_image: >-
|
||||
{{ docker_registry }}/{{ docker_registry_repository }}/{{ awx_task_image }}:{{ awx_version }}
|
||||
when: docker_registry is defined
|
||||
|
||||
- name: Set full image path for local install
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user