Skip to content

Commit e75ece7

Browse files
authored
Increased timeout when waiting to deploy operator in e2e tests (#985)
1 parent 8763b8a commit e75ece7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e/setup/setup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ func DeployOperator(config TestConfig, resourceName string, withTLS bool, defaul
213213
return err
214214
}
215215

216-
if err := wait.PollImmediate(time.Second, 30*time.Second, hasDeploymentRequiredReplicas(&dep)); err != nil {
216+
if err := wait.PollImmediate(time.Second, 60*time.Second, hasDeploymentRequiredReplicas(&dep)); err != nil {
217217
return errors.New("error building operator deployment: the deployment does not have the required replicas")
218218
}
219219
fmt.Println("Successfully installed the operator deployment")

0 commit comments

Comments
 (0)