From 81dac60945c6d93c9a5dd8f62af2b43c015f3ca3 Mon Sep 17 00:00:00 2001 From: Adrian Gonzalez-Martin Date: Fri, 1 Sep 2023 10:55:50 +0100 Subject: [PATCH] Move timeout from Helm to 'k rollout status' and reduce to 2min --- testing/scripts/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testing/scripts/Makefile b/testing/scripts/Makefile index 17726e5476..98c7644ba9 100644 --- a/testing/scripts/Makefile +++ b/testing/scripts/Makefile @@ -64,10 +64,10 @@ helm_setup: .PHONY: install_ambassador install_ambassador: kubectl apply -f https://app.getambassador.io/yaml/edge-stack/3.1.0/aes-crds.yaml - kubectl wait --timeout=180s --for=condition=available deployment emissary-apiext -n emissary-system + kubectl wait --timeout=2m --for=condition=available deployment emissary-apiext -n emissary-system helm install -n ambassador --create-namespace edge-stack datawire/edge-stack \ - -f ../resources/ambassador_values.yaml --wait --timeout 180s - kubectl rollout status -n ambassador deployment/edge-stack -w + -f ../resources/ambassador_values.yaml + kubectl rollout status -n ambassador deployment/edge-stack -w --timeout=2m kubectl apply -f ../resources/ambassador_nontls_setup.yaml -n ambassador .PHONY: install_jaeger