Skip to content

Commit

Permalink
install: increase timeout to 40 minutes
Browse files Browse the repository at this point in the history
We're seeing a significant uptick in install failures.  Many appear to actually finish successfully before
artifact collection.  We have good signal in sippy about successful install ratios.  We can increase
this timeout by 10 minutes to see if we get an improved install percentage and then continue from there.
  • Loading branch information
deads2k committed Sep 16, 2020
1 parent 8052ddf commit 9348f3a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/openshift-install/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,8 @@ func waitForBootstrapConfigMap(ctx context.Context, client *kubernetes.Clientset
// waitForInitializedCluster watches the ClusterVersion waiting for confirmation
// that the cluster has been initialized.
func waitForInitializedCluster(ctx context.Context, config *rest.Config) error {
timeout := 30 * time.Minute
// TODO revert this value back to 30 minutes. It's currently at the end of 4.6 and we're trying to see if the
timeout := 40 * time.Minute

// Wait longer for baremetal, due to length of time it takes to boot
if assetStore, err := assetstore.NewStore(rootOpts.dir); err == nil {
Expand Down

0 comments on commit 9348f3a

Please sign in to comment.