Skip to content

Commit

Permalink
Remove helm wait of test app installation timeout
Browse files Browse the repository at this point in the history
* `make deploy-test-apps` started to continuously fail waiting
  for timeout.
* Blocking waiting is not that important here so we can disable it
  • Loading branch information
ytsarev committed Jun 23, 2020
1 parent c2f39ba commit 43ca895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ deploy-gslb-cr: create-test-ns
deploy-test-apps: create-test-ns
kubectl apply -f deploy/test-apps
helm repo add podinfo https://stefanprodan.github.io/podinfo
helm upgrade --install --wait frontend --namespace test-gslb -f deploy/test-apps/podinfo/podinfo-values.yaml --set ui.message="\"`$(call get-cluster-geo-tag)`\"" --set image.repository="$(PODINFO_IMAGE_REPO)" podinfo/podinfo
helm upgrade --install frontend --namespace test-gslb -f deploy/test-apps/podinfo/podinfo-values.yaml --set ui.message="\"`$(call get-cluster-geo-tag)`\"" --set image.repository="$(PODINFO_IMAGE_REPO)" podinfo/podinfo

.PHONY: clean-test-apps
clean-test-apps:
Expand Down

0 comments on commit 43ca895

Please sign in to comment.