Skip to content

Commit

Permalink
extended timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Facchetti committed Jul 5, 2023
1 parent d82d4f5 commit 82fcc0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pipelines/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ variables:
# Run the test suite and collect must-gather
jobs:
- job: E2E
timeoutInMinutes: 180
timeoutInMinutes: 240
variables:
ARO_PODMAN_SOCKET: "tcp://localhost:8888"
ARO_SELENIUM_HOSTNAME: "localhost"
Expand Down
2 changes: 1 addition & 1 deletion pkg/installer/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func (m *manager) Install(ctx context.Context) error {
}),
steps.Action(m.deployResourceTemplate),
steps.Action(m.initializeKubernetesClients),
steps.Condition(m.bootstrapConfigMapReady, 30*time.Minute, true),
steps.Condition(m.bootstrapConfigMapReady, time.Hour, true),
}

_, err := steps.Run(ctx, m.log, 10*time.Second, s, nil)
Expand Down

0 comments on commit 82fcc0c

Please sign in to comment.