mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-20 07:43:35 -05:00
Only build one awx image instead of separate web and task images
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
This is a list of high-level changes for each release of AWX. A full list of commits can be found at `https://github.com/ansible/awx/releases/tag/<version>`.
|
This is a list of high-level changes for each release of AWX. A full list of commits can be found at `https://github.com/ansible/awx/releases/tag/<version>`.
|
||||||
|
|
||||||
## 12.0.0 (TBD)
|
## 12.0.0 (TBD)
|
||||||
|
- Moved to a single container image build instead of separate awx_web and awx_task images. The container image is just `awx` (https://github.com/ansible/awx/pull/7228)
|
||||||
- Official AWX container image builds now use a two-stage container build process that notably reduces the size of our published images (https://github.com/ansible/awx/pull/7017)
|
- Official AWX container image builds now use a two-stage container build process that notably reduces the size of our published images (https://github.com/ansible/awx/pull/7017)
|
||||||
- Removed support for HipChat notifications ([EoL announcement](https://www.atlassian.com/partnerships/slack/faq#faq-98b17ca3-247f-423b-9a78-70a91681eff0)); all previously-created HipChat notification templates will be deleted due to this removal.
|
- Removed support for HipChat notifications ([EoL announcement](https://www.atlassian.com/partnerships/slack/faq#faq-98b17ca3-247f-423b-9a78-70a91681eff0)); all previously-created HipChat notification templates will be deleted due to this removal.
|
||||||
- Fixed a bug which broke AWX installations with oc version 4.3 (https://github.com/ansible/awx/pull/6948/files)
|
- Fixed a bug which broke AWX installations with oc version 4.3 (https://github.com/ansible/awx/pull/6948/files)
|
||||||
|
|||||||
@@ -109,7 +109,7 @@ In the sections below, you'll find deployment details and instructions for each
|
|||||||
|
|
||||||
### Official vs Building Images
|
### Official vs Building Images
|
||||||
|
|
||||||
When installing AWX you have the option of building your own images or using the images provided on DockerHub (see [awx_web](https://hub.docker.com/r/ansible/awx_web/) and [awx_task](https://hub.docker.com/r/ansible/awx_task/))
|
When installing AWX you have the option of building your own image or using the image provided on DockerHub (see [awx](https://hub.docker.com/r/ansible/awx/))
|
||||||
|
|
||||||
This is controlled by the following variables in the `inventory` file
|
This is controlled by the following variables in the `inventory` file
|
||||||
|
|
||||||
@@ -122,7 +122,7 @@ If these variables are present then all deployments will use these hosted images
|
|||||||
|
|
||||||
*dockerhub_base*
|
*dockerhub_base*
|
||||||
|
|
||||||
> The base location on DockerHub where the images are hosted (by default this pulls container images named `ansible/awx_web:tag` and `ansible/awx_task:tag`)
|
> The base location on DockerHub where the images are hosted (by default this pulls a container image named `ansible/awx:tag`)
|
||||||
|
|
||||||
*dockerhub_version*
|
*dockerhub_version*
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ localhost ansible_connection=local ansible_python_interpreter="/usr/bin/env pyth
|
|||||||
# Remove these lines if you want to run a local image build
|
# Remove these lines if you want to run a local image build
|
||||||
# Otherwise the setup playbook will install the official Ansible images. Versions may
|
# Otherwise the setup playbook will install the official Ansible images. Versions may
|
||||||
# be selected based on: latest, 1, 1.0, 1.0.0, 1.0.0.123
|
# be selected based on: latest, 1, 1.0, 1.0.0, 1.0.0.123
|
||||||
# by default the base will be used to search for ansible/awx_web and ansible/awx_task
|
# by default the base will be used to search for ansible/awx
|
||||||
dockerhub_base=ansible
|
dockerhub_base=ansible
|
||||||
|
|
||||||
# Openshift Install
|
# Openshift Install
|
||||||
|
|||||||
@@ -84,13 +84,9 @@
|
|||||||
set_fact:
|
set_fact:
|
||||||
docker_base_path: "{{ awx_local_base_config_path|default('/tmp') }}/docker-image"
|
docker_base_path: "{{ awx_local_base_config_path|default('/tmp') }}/docker-image"
|
||||||
|
|
||||||
- name: Set awx_web image name
|
- name: Set awx image name
|
||||||
set_fact:
|
set_fact:
|
||||||
web_image: "{{ web_image|default('awx_web') }}"
|
awx_image: "{{ awx_image|default('awx') }}"
|
||||||
|
|
||||||
- name: Set awx_task image name
|
|
||||||
set_fact:
|
|
||||||
task_image: "{{ task_image|default('awx_task') }}"
|
|
||||||
|
|
||||||
- name: Ensure directory exists
|
- name: Ensure directory exists
|
||||||
file:
|
file:
|
||||||
@@ -110,12 +106,6 @@
|
|||||||
dest: "{{ docker_base_path }}/Dockerfile"
|
dest: "{{ docker_base_path }}/Dockerfile"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: Template task Dockerfile
|
|
||||||
template:
|
|
||||||
src: Dockerfile.task.j2
|
|
||||||
dest: "{{ docker_base_path }}/Dockerfile.task"
|
|
||||||
delegate_to: localhost
|
|
||||||
|
|
||||||
- name: Stage launch_awx
|
- name: Stage launch_awx
|
||||||
copy:
|
copy:
|
||||||
src: launch_awx.sh
|
src: launch_awx.sh
|
||||||
@@ -174,7 +164,7 @@
|
|||||||
dest: "{{ docker_base_path }}/Makefile"
|
dest: "{{ docker_base_path }}/Makefile"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: Build base web image
|
- name: Build base awx image
|
||||||
docker_image:
|
docker_image:
|
||||||
build:
|
build:
|
||||||
path: "{{ docker_base_path }}"
|
path: "{{ docker_base_path }}"
|
||||||
@@ -184,34 +174,17 @@
|
|||||||
http_proxy: "{{ http_proxy | default('') }}"
|
http_proxy: "{{ http_proxy | default('') }}"
|
||||||
https_proxy: "{{ https_proxy | default('') }}"
|
https_proxy: "{{ https_proxy | default('') }}"
|
||||||
no_proxy: "{{ no_proxy | default('') }}"
|
no_proxy: "{{ no_proxy | default('') }}"
|
||||||
name: "{{ web_image }}"
|
name: "{{ awx_image }}"
|
||||||
tag: "{{ awx_version }}"
|
tag: "{{ awx_version }}"
|
||||||
source: 'build'
|
source: 'build'
|
||||||
force_source: true
|
force_source: true
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: Build base task image
|
- name: Tag awx images as latest
|
||||||
docker_image:
|
|
||||||
build:
|
|
||||||
path: "{{ docker_base_path }}"
|
|
||||||
dockerfile: Dockerfile.task
|
|
||||||
pull: false
|
|
||||||
args:
|
|
||||||
http_proxy: "{{ http_proxy | default('') }}"
|
|
||||||
https_proxy: "{{ https_proxy | default('') }}"
|
|
||||||
no_proxy: "{{ no_proxy | default('') }}"
|
|
||||||
name: "{{ task_image }}"
|
|
||||||
tag: "{{ awx_version }}"
|
|
||||||
source: 'build'
|
|
||||||
force_source: true
|
|
||||||
delegate_to: localhost
|
|
||||||
|
|
||||||
- name: Tag task and web images as latest
|
|
||||||
command: "docker tag {{ item }}:{{ awx_version }} {{ item }}:latest"
|
command: "docker tag {{ item }}:{{ awx_version }} {{ item }}:latest"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
with_items:
|
with_items:
|
||||||
- "{{ task_image }}"
|
- "{{ awx_image }}"
|
||||||
- "{{ web_image }}"
|
|
||||||
|
|
||||||
- name: Clean docker base directory
|
- name: Clean docker base directory
|
||||||
file:
|
file:
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
FROM {{ web_image }}:{{ awx_version }}
|
|
||||||
USER 0
|
|
||||||
RUN sudo dnf -y remove nginx
|
|
||||||
USER 1000
|
|
||||||
EXPOSE 8052
|
|
||||||
CMD /usr/bin/launch_awx_task.sh
|
|
||||||
@@ -10,35 +10,19 @@
|
|||||||
|
|
||||||
- name: Remove local images to ensure proper push behavior
|
- name: Remove local images to ensure proper push behavior
|
||||||
block:
|
block:
|
||||||
- name: Remove web image
|
- name: Remove awx image
|
||||||
docker_image:
|
docker_image:
|
||||||
name: "{{ docker_registry }}/{{ docker_registry_repository }}/{{ web_image }}"
|
name: "{{ docker_registry }}/{{ docker_registry_repository }}/{{ awx_image }}"
|
||||||
tag: "{{ awx_version }}"
|
|
||||||
state: absent
|
|
||||||
|
|
||||||
- name: Remove task image
|
|
||||||
docker_image:
|
|
||||||
name: "{{ docker_registry }}/{{ docker_registry_repository }}/{{ task_image }}"
|
|
||||||
tag: "{{ awx_version }}"
|
tag: "{{ awx_version }}"
|
||||||
state: absent
|
state: absent
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
- name: Tag and Push Container Images
|
- name: Tag and Push Container Images
|
||||||
block:
|
block:
|
||||||
- name: Tag and push web image to registry
|
- name: Tag and push awx image to registry
|
||||||
docker_image:
|
docker_image:
|
||||||
name: "{{ web_image }}"
|
name: "{{ awx_image }}"
|
||||||
repository: "{{ docker_registry }}/{{ docker_registry_repository }}/{{ web_image }}"
|
repository: "{{ docker_registry }}/{{ docker_registry_repository }}/{{ awx_image }}"
|
||||||
tag: "{{ item }}"
|
|
||||||
push: true
|
|
||||||
with_items:
|
|
||||||
- "latest"
|
|
||||||
- "{{ awx_version }}"
|
|
||||||
|
|
||||||
- name: Tag and push task image to registry
|
|
||||||
docker_image:
|
|
||||||
name: "{{ task_image }}"
|
|
||||||
repository: "{{ docker_registry }}/{{ docker_registry_repository }}/{{ task_image }}"
|
|
||||||
tag: "{{ item }}"
|
tag: "{{ item }}"
|
||||||
push: true
|
push: true
|
||||||
with_items:
|
with_items:
|
||||||
@@ -48,7 +32,5 @@
|
|||||||
|
|
||||||
- name: Set full image path for Registry
|
- name: Set full image path for Registry
|
||||||
set_fact:
|
set_fact:
|
||||||
awx_web_docker_actual_image: >-
|
awx_docker_actual_image: >-
|
||||||
{{ docker_registry }}/{{ docker_registry_repository }}/{{ web_image }}:{{ awx_version }}
|
{{ docker_registry }}/{{ docker_registry_repository }}/{{ awx_image }}:{{ awx_version }}
|
||||||
awx_task_docker_actual_image: >-
|
|
||||||
{{ docker_registry }}/{{ docker_registry_repository }}/{{ task_image }}:{{ awx_version }}
|
|
||||||
|
|||||||
@@ -9,10 +9,10 @@ admin_password: ''
|
|||||||
kubernetes_base_path: "{{ local_base_config_path|default('/tmp') }}/{{ kubernetes_deployment_name }}-config"
|
kubernetes_base_path: "{{ local_base_config_path|default('/tmp') }}/{{ kubernetes_deployment_name }}-config"
|
||||||
|
|
||||||
kubernetes_task_version: "{{ tower_package_version | default(dockerhub_version) }}"
|
kubernetes_task_version: "{{ tower_package_version | default(dockerhub_version) }}"
|
||||||
kubernetes_task_image: "{{ tower_package_name | default('ansible/awx_task') }}"
|
|
||||||
|
|
||||||
kubernetes_web_version: "{{ tower_package_version | default(dockerhub_version) }}"
|
kubernetes_web_version: "{{ tower_package_version | default(dockerhub_version) }}"
|
||||||
kubernetes_web_image: "{{ tower_package_name | default('ansible/awx_web') }}"
|
kubernetes_awx_image: "{{ tower_package_name | default('ansible/awx') }}"
|
||||||
|
kubernetes_web_image: "{{ kubernetes_awx_image }}"
|
||||||
|
kubernetes_task_image: "{{ kubernetes_awx_image }}"
|
||||||
|
|
||||||
web_mem_request: 1
|
web_mem_request: 1
|
||||||
web_cpu_request: 500
|
web_cpu_request: 500
|
||||||
|
|||||||
@@ -190,15 +190,10 @@
|
|||||||
|
|
||||||
- name: Set image names if using custom registry
|
- name: Set image names if using custom registry
|
||||||
block:
|
block:
|
||||||
- name: Set task image name
|
- name: Set awx image name
|
||||||
set_fact:
|
set_fact:
|
||||||
kubernetes_task_image: "{{ docker_registry }}/{{ docker_registry_repository }}/{{ task_image }}"
|
kubernetes_awx_image: "{{ docker_registry }}/{{ docker_registry_repository }}/{{ awx_image }}"
|
||||||
when: kubernetes_task_image is not defined
|
when: kubernetes_awx_image is not defined
|
||||||
|
|
||||||
- name: Set web image name
|
|
||||||
set_fact:
|
|
||||||
kubernetes_web_image: "{{ docker_registry }}/{{ docker_registry_repository }}/{{ web_image }}"
|
|
||||||
when: kubernetes_web_image is not defined
|
|
||||||
when: docker_registry is defined
|
when: docker_registry is defined
|
||||||
|
|
||||||
- name: Determine Deployment api version
|
- name: Determine Deployment api version
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ spec:
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
containers:
|
containers:
|
||||||
- name: {{ kubernetes_deployment_name }}-web
|
- name: {{ kubernetes_deployment_name }}-web
|
||||||
image: "{{ kubernetes_web_image }}:{{ kubernetes_web_version }}"
|
image: "{{ kubernetes_awx_image }}:{{ kubernetes_web_version }}"
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8052
|
- containerPort: 8052
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
dockerhub_version: "{{ lookup('file', playbook_dir + '/../VERSION') }}"
|
dockerhub_version: "{{ lookup('file', playbook_dir + '/../VERSION') }}"
|
||||||
|
|
||||||
|
awx_image: "awx"
|
||||||
redis_image: "redis"
|
redis_image: "redis"
|
||||||
|
|
||||||
postgresql_version: "10"
|
postgresql_version: "10"
|
||||||
|
|||||||
@@ -1,19 +1,11 @@
|
|||||||
---
|
---
|
||||||
- name: Manage AWX Container Images
|
- name: Manage AWX Container Images
|
||||||
block:
|
block:
|
||||||
- name: Export Docker web image if it isnt local and there isnt a registry defined
|
- name: Export Docker awx image if it isnt local and there isnt a registry defined
|
||||||
docker_image:
|
docker_image:
|
||||||
name: "{{ web_image }}"
|
name: "{{ awx_image }}"
|
||||||
tag: "{{ awx_version }}"
|
tag: "{{ awx_version }}"
|
||||||
archive_path: "{{ awx_local_base_config_path|default('/tmp') }}/{{ web_image }}_{{ awx_version }}.tar"
|
archive_path: "{{ awx_local_base_config_path|default('/tmp') }}/{{ awx_image }}_{{ awx_version }}.tar"
|
||||||
when: inventory_hostname != "localhost" and docker_registry is not defined
|
|
||||||
delegate_to: localhost
|
|
||||||
|
|
||||||
- name: Export Docker task image if it isnt local and there isnt a registry defined
|
|
||||||
docker_image:
|
|
||||||
name: "{{ task_image }}"
|
|
||||||
tag: "{{ awx_version }}"
|
|
||||||
archive_path: "{{ awx_local_base_config_path|default('/tmp') }}/{{ task_image }}_{{ awx_version }}.tar"
|
|
||||||
when: inventory_hostname != "localhost" and docker_registry is not defined
|
when: inventory_hostname != "localhost" and docker_registry is not defined
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
@@ -28,43 +20,27 @@
|
|||||||
state: directory
|
state: directory
|
||||||
when: ansible_connection != "local" and docker_registry is not defined
|
when: ansible_connection != "local" and docker_registry is not defined
|
||||||
|
|
||||||
- name: Copy web image to docker execution
|
- name: Copy awx image to docker execution
|
||||||
copy:
|
copy:
|
||||||
src: "{{ awx_local_base_config_path|default('/tmp') }}/{{ web_image }}_{{ awx_version }}.tar"
|
src: "{{ awx_local_base_config_path|default('/tmp') }}/{{ awx_image }}_{{ awx_version }}.tar"
|
||||||
dest: "{{ docker_deploy_base_path }}/{{ web_image }}_{{ awx_version }}.tar"
|
dest: "{{ docker_deploy_base_path }}/{{ awx_image }}_{{ awx_version }}.tar"
|
||||||
when: ansible_connection != "local" and docker_registry is not defined
|
when: ansible_connection != "local" and docker_registry is not defined
|
||||||
|
|
||||||
- name: Copy task image to docker execution
|
- name: Load awx image
|
||||||
copy:
|
|
||||||
src: "{{ awx_local_base_config_path|default('/tmp') }}/{{ task_image }}_{{ awx_version }}.tar"
|
|
||||||
dest: "{{ docker_deploy_base_path }}"
|
|
||||||
when: ansible_connection != "local" and docker_registry is not defined
|
|
||||||
|
|
||||||
- name: Load web image
|
|
||||||
docker_image:
|
docker_image:
|
||||||
name: "{{ web_image }}"
|
name: "{{ awx_image }}"
|
||||||
tag: "{{ awx_version }}"
|
tag: "{{ awx_version }}"
|
||||||
load_path: "{{ docker_deploy_base_path }}/{{ web_image }}_{{ awx_version }}.tar"
|
load_path: "{{ docker_deploy_base_path }}/{{ awx_image }}_{{ awx_version }}.tar"
|
||||||
timeout: 300
|
|
||||||
when: ansible_connection != "local" and docker_registry is not defined
|
|
||||||
|
|
||||||
- name: Load task image
|
|
||||||
docker_image:
|
|
||||||
name: "{{ task_image }}"
|
|
||||||
tag: "{{ awx_version }}"
|
|
||||||
load_path: "{{ docker_deploy_base_path }}/{{ task_image }}_{{ awx_version }}.tar"
|
|
||||||
timeout: 300
|
timeout: 300
|
||||||
when: ansible_connection != "local" and docker_registry is not defined
|
when: ansible_connection != "local" and docker_registry is not defined
|
||||||
|
|
||||||
- name: Set full image path for local install
|
- name: Set full image path for local install
|
||||||
set_fact:
|
set_fact:
|
||||||
awx_web_docker_actual_image: "{{ web_image }}:{{ awx_version }}"
|
awx_docker_actual_image: "{{ awx_image }}:{{ awx_version }}"
|
||||||
awx_task_docker_actual_image: "{{ task_image }}:{{ awx_version }}"
|
|
||||||
when: docker_registry is not defined
|
when: docker_registry is not defined
|
||||||
when: dockerhub_base is not defined
|
when: dockerhub_base is not defined
|
||||||
|
|
||||||
- name: Set DockerHub Image Paths
|
- name: Set DockerHub Image Paths
|
||||||
set_fact:
|
set_fact:
|
||||||
awx_web_docker_actual_image: "{{ dockerhub_base }}/awx_web:{{ dockerhub_version }}"
|
awx_docker_actual_image: "{{ dockerhub_base }}/awx:{{ dockerhub_version }}"
|
||||||
awx_task_docker_actual_image: "{{ dockerhub_base }}/awx_task:{{ dockerhub_version }}"
|
|
||||||
when: dockerhub_base is defined
|
when: dockerhub_base is defined
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ version: '2'
|
|||||||
services:
|
services:
|
||||||
|
|
||||||
web:
|
web:
|
||||||
image: {{ awx_web_docker_actual_image }}
|
image: {{ awx_docker_actual_image }}
|
||||||
container_name: awx_web
|
container_name: awx_web
|
||||||
depends_on:
|
depends_on:
|
||||||
- redis
|
- redis
|
||||||
@@ -72,7 +72,7 @@ services:
|
|||||||
no_proxy: {{ no_proxy | default('') }}
|
no_proxy: {{ no_proxy | default('') }}
|
||||||
|
|
||||||
task:
|
task:
|
||||||
image: {{ awx_task_docker_actual_image }}
|
image: {{ awx_docker_actual_image }}
|
||||||
container_name: awx_task
|
container_name: awx_task
|
||||||
depends_on:
|
depends_on:
|
||||||
- redis
|
- redis
|
||||||
@@ -81,6 +81,7 @@ services:
|
|||||||
{% if pg_hostname is not defined %}
|
{% if pg_hostname is not defined %}
|
||||||
- postgres
|
- postgres
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
command: /usr/bin/launch_awx_task.sh
|
||||||
hostname: {{ awx_task_hostname }}
|
hostname: {{ awx_task_hostname }}
|
||||||
user: root
|
user: root
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|||||||
Reference in New Issue
Block a user