mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 11:20:39 -03:30
environment.sh uses hostname for everything, and both environment and credentials provide a default of 'memcached', so this should also be one less variable to care about.
22 lines
529 B
YAML
22 lines
529 B
YAML
---
|
|
dockerhub_version: "{{ lookup('file', playbook_dir + '/../VERSION') }}"
|
|
|
|
rabbitmq_version: "3.7.4"
|
|
rabbitmq_image: "ansible/awx_rabbitmq:{{rabbitmq_version}}"
|
|
rabbitmq_default_vhost: "awx"
|
|
rabbitmq_erlang_cookie: "cookiemonster"
|
|
rabbitmq_hostname: "rabbitmq"
|
|
rabbitmq_port: "5672"
|
|
rabbitmq_user: "guest"
|
|
rabbitmq_password: "guest"
|
|
|
|
postgresql_version: "10"
|
|
postgresql_image: "postgres:{{postgresql_version}}"
|
|
|
|
|
|
memcached_image: "memcached"
|
|
memcached_version: "alpine"
|
|
memcached_hostname: "memcached"
|
|
memcached_port: "11211"
|
|
|