From dafb4bf69b96e9dd44cd36baf3af38d00c7bfc6e Mon Sep 17 00:00:00 2001 From: Jont828 Date: Thu, 9 Jan 2025 15:31:35 -0500 Subject: [PATCH] Bump timeout back to 30m --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e69794f8407..5f0f4a86525 100644 --- a/Makefile +++ b/Makefile @@ -378,7 +378,7 @@ create-workload-cluster: $(ENVSUBST) $(KUBECTL) ## Create a workload cluster. timeout --foreground 1800 bash -c "while ! $(KUBECTL) get secrets -n default | grep $(CLUSTER_NAME)-kubeconfig; do sleep 1; done" # Get kubeconfig and store it locally. $(KUBECTL) get secret/$(CLUSTER_NAME)-kubeconfig -n default -o json | jq -r .data.value | base64 --decode > ./kubeconfig - $(KUBECTL) -n default wait --for=condition=Ready --timeout=10m cluster "$(CLUSTER_NAME)" + $(KUBECTL) -n default wait --for=condition=Ready --timeout=30m cluster "$(CLUSTER_NAME)" @echo 'run "$(KUBECTL) --kubeconfig=./kubeconfig ..." to work with the new target cluster'