mirror of
https://github.com/ansible/awx.git
synced 2026-02-22 13:36:02 -03:30
Consolidate the Local Docker installer and the dev env
- removes local_docker installer and points community users to our development environment (make docker-compose) - provides a migration path from Local Docker Compose installations --> the dev environment - the dev env can now be configured to use an external database - consolidated the Local Docker and dev env docker-compose.yml files into one template file, used by the dockerfile role - added a 'sources' role to template out config files - the postgres data dir is no longer a bind-mount, it is a docker volume - the redis socket is not longer a bind-mount, it is a docker volume - the local_settings.py.docker-compose file no longer needs to be copied over in the dev env - Create tmp rsyslog.conf in rsyslog volume to avoid cross-linking. Previously, the tmp code-generated rsyslog.conf was being written to /tmp (by default). As a result, we were attempting to shutil.move() across volumes. - move k8s image build and push roles under tools/ansible - See tools/docker-compose/README.md for usage of these changes
This commit is contained in:
19
tools/docker-compose/inventory
Normal file
19
tools/docker-compose/inventory
Normal file
@@ -0,0 +1,19 @@
|
||||
localhost ansible_connection=local ansible_python_interpreter="/usr/bin/env python3"
|
||||
|
||||
[all:vars]
|
||||
|
||||
# AWX-Managed Database Settings
|
||||
# If left blank, these will be generated upon install.
|
||||
# Values are written out to tools/docker-compose/_sources/secrets/
|
||||
# pg_password=""
|
||||
# broadcast_websocket_secret=""
|
||||
# secret_key=""
|
||||
|
||||
# External Database Settings
|
||||
# pg_host=""
|
||||
# pg_password=""
|
||||
# pg_username=""
|
||||
# pg_hostname=""
|
||||
|
||||
# awx_image="ansible/awx"
|
||||
# migrate_local_docker=false
|
||||
Reference in New Issue
Block a user