diff --git a/test/scenarios-periodics/el92-src@cncf-conformance.sh b/test/scenarios-periodics/el92-src@cncf-conformance.sh index 96caf99fe4..1726a1cb66 100644 --- a/test/scenarios-periodics/el92-src@cncf-conformance.sh +++ b/test/scenarios-periodics/el92-src@cncf-conformance.sh @@ -5,7 +5,7 @@ KUBECONFIG="${SCENARIO_INFO_DIR}/${SCENARIO}/kubeconfig" # Timeout in seconds TIMEOUT_TEST=7400 -TIMEOUT_RESULTS=300 +TIMEOUT_RESULTS=600 prepare_hosts() { local -r primary_host_ip=$(cat "${SCENARIO_INFO_DIR}/${SCENARIO}/vms/host1/public_ip") @@ -57,12 +57,12 @@ run_sonobuoy() { exit 1 fi - # Use 1h timeout. A normal run on 2 CPUs takes 40-45min. + # Note that a normal run on 2 CPUs takes 40-45min. start=$(date +%s) while [ "$(~/go/bin/sonobuoy status --json | jq -r '.status')" = "running" ] ; do now=$(date +%s) if [ $(( now - start )) -ge ${TIMEOUT_TEST} ]; then - echo "Tests running for 1h. Timing out" + echo "Tests running for ${TIMEOUT_TEST}s. Timing out" break fi ~/go/bin/sonobuoy status --json | jq '.plugins[] | select(.plugin=="e2e") | .progress' @@ -74,7 +74,7 @@ run_sonobuoy() { while [ -z $(~/go/bin/sonobuoy status --json | jq -r '."tar-info".name') ] ; do now=$(date +%s) if [ $(( now - start )) -ge ${TIMEOUT_RESULTS} ]; then - echo "Waited for results for 5m. Timing out" + echo "Waited for results for ${TIMEOUT_RESULTS}s. Timing out" break fi echo "Waiting for results availability"