From 82fcc0cb059cdd84cd32ea18e7eeebc1fa478968 Mon Sep 17 00:00:00 2001 From: Jeremy Facchetti Date: Fri, 30 Jun 2023 13:43:21 +0200 Subject: [PATCH] extended timeouts --- .pipelines/e2e.yml | 2 +- pkg/installer/install.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pipelines/e2e.yml b/.pipelines/e2e.yml index b306d991df0..ca0cc7ac0c1 100644 --- a/.pipelines/e2e.yml +++ b/.pipelines/e2e.yml @@ -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" diff --git a/pkg/installer/install.go b/pkg/installer/install.go index e3bf4e2ae8d..1ff17c87614 100644 --- a/pkg/installer/install.go +++ b/pkg/installer/install.go @@ -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)