Skip to content

Commit 3478ff8

Browse files
committed
e2e job timeout raise to 24 hours
1 parent 862cb22 commit 3478ff8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/e2e/cmd/run/run.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ import (
3535
)
3636

3737
const (
38-
jobTimeout = 900 * time.Minute // time to wait for the test job to finish
39-
kubePollInterval = 10 * time.Second // Kube API polling interval
40-
testRunLabel = "test-run" // name of the label applied to resources
41-
logStreamLabel = "stream-logs" // name of the label enabling log streaming to e2e runner
42-
testsLogFilePattern = "job-%s.json" // name of file to keep all test logs in JSON format
43-
operatorReadyTimeout = 12 * time.Minute // time to wait for the operator pod to be ready
38+
jobTimeout = 1440 * time.Minute // time to wait for the test job to finish
39+
kubePollInterval = 10 * time.Second // Kube API polling interval
40+
testRunLabel = "test-run" // name of the label applied to resources
41+
logStreamLabel = "stream-logs" // name of the label enabling log streaming to e2e runner
42+
testsLogFilePattern = "job-%s.json" // name of file to keep all test logs in JSON format
43+
operatorReadyTimeout = 12 * time.Minute // time to wait for the operator pod to be ready
4444

4545
TestNameLabel = "test-name" // name of the label applied to resources during each test
4646

0 commit comments

Comments
 (0)