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 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 }