mirror of
https://github.com/ansible/awx.git
synced 2026-03-25 21:05:03 -02:30
Merge pull request #10671 from fosterseth/fix_minikube_start_by_default
Fix conditional to check that minikube should start SUMMARY make docker-compose tries to start container group without this fix ISSUE TYPE Bugfix Pull Request COMPONENT NAME API AWX VERSION awx: 19.2.2 Reviewed-by: Jake McDermott <yo@jakemcdermott.me> Reviewed-by: Alan Rominger <arominge@redhat.com>
This commit is contained in:
2
Makefile
2
Makefile
@@ -470,7 +470,7 @@ CLUSTER_NODE_COUNT ?= 1
|
|||||||
MINIKUBE_CONTAINER_GROUP ?= false
|
MINIKUBE_CONTAINER_GROUP ?= false
|
||||||
|
|
||||||
docker-compose-sources: .git/hooks/pre-commit
|
docker-compose-sources: .git/hooks/pre-commit
|
||||||
@if [ $(MINIKUBE_CONTAINER_GROUP) ]; then\
|
@if [ $(MINIKUBE_CONTAINER_GROUP) = true ]; then\
|
||||||
ansible-playbook -i tools/docker-compose/inventory tools/docker-compose-minikube/deploy.yml; \
|
ansible-playbook -i tools/docker-compose/inventory tools/docker-compose-minikube/deploy.yml; \
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user