Merge pull request #9492 from chrismeyersfsu/fix-docker-compose-cluster-for-real

default cluster node count env var to 1

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2021-03-05 13:40:11 +00:00 committed by GitHub
commit 0123469e7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -534,7 +534,7 @@ awx/projects:
@mkdir -p $@
COMPOSE_UP_OPTS ?=
CLUSER_NODE_COUNT ?= 1
CLUSTER_NODE_COUNT ?= 1
docker-compose-sources:
ansible-playbook -i tools/docker-compose/inventory tools/docker-compose/ansible/sources.yml \

View File

@ -5,4 +5,4 @@ awx_image: 'quay.io/ansible/awx_devel'
pg_port: 5432
pg_username: 'awx'
pg_database: 'awx'
cluster_node_count: "{{ lookup('env', 'CLUSTER_COUNT') | default(1, True) }}"
cluster_node_count: 1