From 43ca89577a0d83fd998c1b60680ba56e948c8a41 Mon Sep 17 00:00:00 2001 From: Yury Tsarev Date: Mon, 22 Jun 2020 21:03:04 +0200 Subject: [PATCH] Remove helm wait of test app installation timeout * `make deploy-test-apps` started to continuously fail waiting for timeout. * Blocking waiting is not that important here so we can disable it --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ccb590a261..50a3267a90 100644 --- a/Makefile +++ b/Makefile @@ -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: