From 1c5b77b0cb2e00a21f9c9eceb2e3cb9b830c1af4 Mon Sep 17 00:00:00 2001 From: Danielle Lancashire Date: Fri, 29 Jul 2022 13:18:03 +0000 Subject: [PATCH] test-e2e-node: set ginkgo test timeout to 24h Ginkgo v1 had a much longer default test timeout, in v2 this switched to being 1 hour. This is not long enough to run many of our suites. Here we copy the backwards compatibility that is used by hack/gingo-e2e.sh to unbreak serial pipelines. --- hack/make-rules/test-e2e-node.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/make-rules/test-e2e-node.sh b/hack/make-rules/test-e2e-node.sh index dae09630ca1..d4e664536ef 100755 --- a/hack/make-rules/test-e2e-node.sh +++ b/hack/make-rules/test-e2e-node.sh @@ -53,7 +53,7 @@ ssh_options=${SSH_OPTIONS:-} kubelet_config_file=${KUBELET_CONFIG_FILE:-"test/e2e_node/jenkins/default-kubelet-config.yaml"} # Parse the flags to pass to ginkgo -ginkgoflags="" +ginkgoflags="-timeout=24h" if [[ ${parallelism} -gt 1 ]]; then ginkgoflags="${ginkgoflags} -nodes=${parallelism} " fi