mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 23:51:09 +03:00
59 lines
2.3 KiB
Django/Jinja
59 lines
2.3 KiB
Django/Jinja
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ kubernetes_deployment_name }}-launch-awx
|
|
namespace: {{ kubernetes_namespace }}
|
|
data:
|
|
launch-awx-task: |
|
|
#!/usr/bin/env bash
|
|
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
|
|
rm /tmp/passwd
|
|
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 wait_for -a "path=/var/run/redis/redis.sock" all
|
|
|
|
|
|
if [ -z "$AWX_SKIP_MIGRATIONS" ]; then
|
|
awx-manage migrate --noinput
|
|
fi
|
|
|
|
if [ ! -z "$AWX_ADMIN_USER" ]&&[ ! -z "$AWX_ADMIN_PASSWORD" ]; then
|
|
echo "from django.contrib.auth.models import User; User.objects.create_superuser('$AWX_ADMIN_USER', 'root@localhost', '$AWX_ADMIN_PASSWORD')" | awx-manage shell
|
|
awx-manage create_preload_data
|
|
else
|
|
echo "from django.contrib.auth.models import User; User.objects.create_superuser('admin', 'root@localhost', 'password')" | awx-manage shell
|
|
awx-manage create_preload_data
|
|
fi
|
|
echo 'from django.conf import settings; x = settings.AWX_TASK_ENV; x["HOME"] = "/var/lib/awx"; settings.AWX_TASK_ENV = x' | awx-manage shell
|
|
awx-manage provision_instance --hostname=$(hostname)
|
|
awx-manage register_queue --queuename=tower --instance_percent=100
|
|
|
|
unset $(cut -d = -f -1 /etc/tower/conf.d/environment.sh)
|
|
|
|
supervisord -c /supervisor_task.conf
|
|
|
|
launch-awx-web: |
|
|
#!/usr/bin/env bash
|
|
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
|
|
rm /tmp/passwd
|
|
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 wait_for -a "path=/var/run/redis/redis.sock" all
|
|
|
|
awx-manage collectstatic --noinput --clear
|
|
|
|
unset $(cut -d = -f -1 /etc/tower/conf.d/environment.sh)
|
|
|
|
supervisord -c /supervisor.conf
|
|
|