Skip to content

Commit

Permalink
local_docker: Fix races between the containers
Browse files Browse the repository at this point in the history
This change will make the t ask container wait for postgres before
running the migrations.

related #6792
  • Loading branch information
dasJ committed Oct 30, 2020
1 parent 52d178b commit 2a9e6d7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
11 changes: 9 additions & 2 deletions installer/roles/image_build/templates/launch_awx_task.sh.j2
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -e
if [ `id -u` -ge 500 ]; then
echo "awx:x:`id -u`:`id -g`:,,,:/var/lib/awx:/bin/bash" >> /tmp/passwd
cat /tmp/passwd > /etc/passwd
Expand All @@ -7,8 +8,14 @@ fi

source /etc/tower/conf.d/environment.sh

ANSIBLE_REMOTE_TEMP=/tmp ANSIBLE_LOCAL_TEMP=/tmp ansible -i "127.0.0.1," -c local -v -m wait_for -a "host=$DATABASE_HOST port=$DATABASE_PORT" all
ANSIBLE_REMOTE_TEMP=/tmp ANSIBLE_LOCAL_TEMP=/tmp ansible -i "127.0.0.1," -c local -v -m postgresql_db --become-user $DATABASE_USER -a "name=$DATABASE_NAME owner=$DATABASE_USER login_user=$DATABASE_USER login_host=$DATABASE_HOST login_password=$DATABASE_PASSWORD port=$DATABASE_PORT" all
while :; do
ANSIBLE_REMOTE_TEMP=/tmp ANSIBLE_LOCAL_TEMP=/tmp ansible -i "127.0.0.1," -c local -v -m wait_for -a "host=$DATABASE_HOST port=$DATABASE_PORT" all || continue
break
done
while :; do
ANSIBLE_REMOTE_TEMP=/tmp ANSIBLE_LOCAL_TEMP=/tmp ansible -i "127.0.0.1," -c local -v -m postgresql_db --become-user $DATABASE_USER -a "name=$DATABASE_NAME owner=$DATABASE_USER login_user=$DATABASE_USER login_host=$DATABASE_HOST login_password=$DATABASE_PASSWORD port=$DATABASE_PORT" all || continue
break
done

if [ -z "$AWX_SKIP_MIGRATIONS" ]; then
awx-manage migrate --noinput
Expand Down
8 changes: 7 additions & 1 deletion installer/roles/local_docker/templates/docker-compose.yml.j2
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#jinja2: lstrip_blocks: True
version: '2'
version: '3'
services:

web:
Expand Down Expand Up @@ -163,6 +163,9 @@ services:
https_proxy: {{ https_proxy | default('') }}
no_proxy: {{ no_proxy | default('') }}
command: ["/usr/local/etc/redis/redis.conf"]
healthcheck:
test: ["CMD-SHELL", "redis-cli -s /var/run/redis/redis.sock ping"]
interval: 10s
volumes:
- "{{ docker_compose_dir }}/redis.conf:/usr/local/etc/redis/redis.conf:ro"
- "{{ docker_compose_dir }}/redis_socket:/var/run/redis/:rw"
Expand All @@ -176,6 +179,9 @@ services:
image: {{ postgresql_image }}
container_name: awx_postgres
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "pg_isready -U {{ pg_username }}"]
interval: 10s
volumes:
- "{{ postgres_data_dir }}/10/data/:/var/lib/postgresql/data:Z"
environment:
Expand Down

0 comments on commit 2a9e6d7

Please sign in to comment.