From 6fc36a0c08a760678876cc0144e5a83df676b366 Mon Sep 17 00:00:00 2001 From: David Caravello <119438707+dcaravel@users.noreply.github.com> Date: Fri, 9 May 2025 10:46:04 -0500 Subject: [PATCH 1/3] increase deploy wait timeout --- scripts/ci/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/deploy.sh b/scripts/ci/deploy.sh index e527d0599..a4e360068 100755 --- a/scripts/ci/deploy.sh +++ b/scripts/ci/deploy.sh @@ -32,7 +32,7 @@ _wait_for_scanner() { kubectl -n stackrox get pod POD="$(kubectl -n stackrox get pod -o jsonpath='{.items[?(@.metadata.labels.app=="scanner")].metadata.name}')" [[ -n "${POD}" ]] - kubectl -n stackrox wait "--for=condition=Ready" "pod/${POD}" --timeout=10m + kubectl -n stackrox wait "--for=condition=Ready" "pod/${POD}" --timeout=20m kubectl -n stackrox get pod } From 3ac3cd6cfe77014807e3977282283757e15678a1 Mon Sep 17 00:00:00 2001 From: David Caravello <119438707+dcaravel@users.noreply.github.com> Date: Fri, 9 May 2025 10:59:22 -0500 Subject: [PATCH 2/3] bump other timeout --- .openshift-ci/pre_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.openshift-ci/pre_tests.py b/.openshift-ci/pre_tests.py index 3039fd27f..355003c35 100644 --- a/.openshift-ci/pre_tests.py +++ b/.openshift-ci/pre_tests.py @@ -12,7 +12,7 @@ class Deployer: Deployer - Deploys Scanner and ScannerDB resources and port-forwards the necessary endpoints. """ - DEPLOY_TIMEOUT = 10 * 60 + DEPLOY_TIMEOUT = 20 * 60 def __init__(self, slim=False): self.slim = slim From 3c757d57b8b150185bf866ffbc4a96eb42af2ec6 Mon Sep 17 00:00:00 2001 From: David Caravello <119438707+dcaravel@users.noreply.github.com> Date: Fri, 9 May 2025 13:24:38 -0500 Subject: [PATCH 3/3] empty commit to trigger CI