mirror of
https://github.com/ansible/awx.git
synced 2026-01-18 13:11:19 -03:30
This commit updates all files that weren't passing yamllint for them to pass. A new yamllint target has been added. One can run `tox -e yamllint` or `yamllint -s .` locally to ensure yaml files are still passing. This check will be enabled in the CI so it can get on every new contributions, and prevent merging non-compliant code. Signed-off-by: Yanis Guenane <yguenane@redhat.com>
21 lines
528 B
YAML
21 lines
528 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"
|