update timeout to 8mins (#5068)

Signed-off-by: anandrkskd <anandrkskd@gmail.com>
This commit is contained in:
Anand Kumar Singh
2021-09-14 05:25:27 +05:30
committed by GitHub
parent c7e6424b2c
commit 1ffc88549d
3 changed files with 1 additions and 1 deletions

0
scripts/clean-old-namespace-from-cluster.sh Normal file → Executable file
View File

0
scripts/openshiftci-e2e-4x-psi-tests_win_mac.sh Normal file → Executable file
View File

View File

@@ -714,7 +714,7 @@ func (oc OcRunner) PodsShouldBeRunning(project string, regex string) {
// Look for pods with specified regex
pod := regexp.MustCompile(regex).FindString(pods)
args := []string{"get", "pods", pod, "-o", "template=\"{{.status.phase}}\"", "-n", project}
oc.WaitForRunnerCmdOut(args, 5, true, func(output string) bool {
oc.WaitForRunnerCmdOut(args, 8, true, func(output string) bool {
return strings.Contains(output, "Running")
})
}