Skip to content

Commit

Permalink
FIXME: cmd/openshift-install/create: Only give 3m for bootstrap complete
Browse files Browse the repository at this point in the history
Becuse we want to gather some logs, and that doesn't happen on successful installs.
  • Loading branch information
wking committed Nov 6, 2020
1 parent 2755198 commit 46e6124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/openshift-install/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ func waitForBootstrapComplete(ctx context.Context, config *rest.Config) (err err
// and waits for the bootstrap configmap to report that bootstrapping has
// completed.
func waitForBootstrapConfigMap(ctx context.Context, client *kubernetes.Clientset) error {
timeout := 30 * time.Minute
timeout := 3 * time.Minute
logrus.Infof("Waiting up to %v for bootstrapping to complete...", timeout)

waitCtx, cancel := context.WithTimeout(ctx, timeout)
Expand Down

0 comments on commit 46e6124

Please sign in to comment.