From 8524d21bf487b0d902e8b68117db3ac20dd53cdf Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Thu, 4 May 2023 07:12:11 -0400 Subject: [PATCH] Bump Ginkgo Poll Progress parameters to a sane level Here's what others in our ecosystem are doing: https://cs.k8s.io/?q=GINKGO_POLL_PROGRESS_(AFTER%7CINTERVAL)&i=nope&files=&excludeFiles=&repos= the logs currently are too big partially because of this incessant output from the progress thingy When someone wants to debug something, they can use this set of parameters to something lower to capture these additional logs. Signed-off-by: Davanum Srinivas --- hack/ginkgo-e2e.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/ginkgo-e2e.sh b/hack/ginkgo-e2e.sh index 4c3ee5f69de..3263474caba 100755 --- a/hack/ginkgo-e2e.sh +++ b/hack/ginkgo-e2e.sh @@ -134,8 +134,8 @@ fi # Some arguments (like --nodes) are only supported when using the CLI. # Those get set below when choosing the program. ginkgo_args=( - "--poll-progress-after=${GINKGO_POLL_PROGRESS_AFTER:-300s}" - "--poll-progress-interval=${GINKGO_POLL_PROGRESS_INTERVAL:-20s}" + "--poll-progress-after=${GINKGO_POLL_PROGRESS_AFTER:-60m}" + "--poll-progress-interval=${GINKGO_POLL_PROGRESS_INTERVAL:-5m}" "--source-root=${KUBE_ROOT}" )