set startup timeout to 10 minutes

5 minutes isn't long enough to scale api at load, leading to failed deploys
This commit is contained in:
Leo Hemsted
2019-10-15 12:09:06 +01:00
parent dc02060de2
commit 46b0cce17b

View File

@@ -191,7 +191,7 @@ cf-deploy: ## Deploys the app to Cloud Foundry
cf v3-cancel-zdt-push ${CF_APP} || true
cf v3-apply-manifest ${CF_APP} -f <(make -s generate-manifest)
cf v3-zdt-push ${CF_APP} --wait-for-deploy-complete # fails after 5 mins if deploy doesn't work
CF_STARTUP_TIMEOUT=10 cf v3-zdt-push ${CF_APP} --wait-for-deploy-complete # fails after 5 mins if deploy doesn't work
.PHONY: cf-deploy-api-db-migration