mirror of
https://github.com/ansible/awx.git
synced 2026-05-07 17:37:37 -02:30
@@ -49,6 +49,10 @@
|
|||||||
|
|
||||||
- name: Build sdist builder image
|
- name: Build sdist builder image
|
||||||
docker_image:
|
docker_image:
|
||||||
|
buildargs:
|
||||||
|
http_proxy: "{{ http_proxy | default('') }}"
|
||||||
|
https_proxy: "{{ https_proxy | default('') }}"
|
||||||
|
no_proxy: "{{ no_proxy | default('') }}"
|
||||||
path: "image_build/files"
|
path: "image_build/files"
|
||||||
dockerfile: Dockerfile.sdist
|
dockerfile: Dockerfile.sdist
|
||||||
name: awx_sdist_builder
|
name: awx_sdist_builder
|
||||||
@@ -58,6 +62,10 @@
|
|||||||
|
|
||||||
- name: Build AWX distribution
|
- name: Build AWX distribution
|
||||||
docker_container:
|
docker_container:
|
||||||
|
env:
|
||||||
|
http_proxy: "{{ http_proxy | default('') }}"
|
||||||
|
https_proxy: "{{ https_proxy | default('') }}"
|
||||||
|
no_proxy: "{{ no_proxy | default('') }}"
|
||||||
image: "awx_sdist_builder:{{ awx_version }}"
|
image: "awx_sdist_builder:{{ awx_version }}"
|
||||||
name: awx_sdist_builder
|
name: awx_sdist_builder
|
||||||
state: started
|
state: started
|
||||||
@@ -154,6 +162,10 @@
|
|||||||
|
|
||||||
- name: Build base web image
|
- name: Build base web image
|
||||||
docker_image:
|
docker_image:
|
||||||
|
buildargs:
|
||||||
|
http_proxy: "{{ http_proxy | default('') }}"
|
||||||
|
https_proxy: "{{ https_proxy | default('') }}"
|
||||||
|
no_proxy: "{{ no_proxy | default('') }}"
|
||||||
path: "{{ docker_base_path }}"
|
path: "{{ docker_base_path }}"
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
name: "{{ awx_web_image }}"
|
name: "{{ awx_web_image }}"
|
||||||
@@ -162,6 +174,10 @@
|
|||||||
|
|
||||||
- name: Build base task image
|
- name: Build base task image
|
||||||
docker_image:
|
docker_image:
|
||||||
|
buildargs:
|
||||||
|
http_proxy: "{{ http_proxy | default('') }}"
|
||||||
|
https_proxy: "{{ https_proxy | default('') }}"
|
||||||
|
no_proxy: "{{ no_proxy | default('') }}"
|
||||||
path: "{{ docker_base_path }}"
|
path: "{{ docker_base_path }}"
|
||||||
dockerfile: Dockerfile.task
|
dockerfile: Dockerfile.task
|
||||||
name: "{{ awx_task_image }}"
|
name: "{{ awx_task_image }}"
|
||||||
|
|||||||
@@ -36,3 +36,8 @@ pg_port=5432
|
|||||||
|
|
||||||
# AWX Tunables
|
# AWX Tunables
|
||||||
awx_secret_key=aabbcc
|
awx_secret_key=aabbcc
|
||||||
|
|
||||||
|
# Proxy
|
||||||
|
#http_proxy=http://proxy:3128
|
||||||
|
#https_proxy=http://proxy:3128
|
||||||
|
#no_proxy=mycorp.org
|
||||||
|
|||||||
Reference in New Issue
Block a user