Skip to content

Commit

Permalink
Increase timeout further - a CI run failed with the 10 minute timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
kimorris27 committed Dec 18, 2024
1 parent a0ea533 commit fa7dacd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cluster/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ func (m *manager) bootstrap() []steps.Step {
// Give Hive 60 minutes to install the cluster, since this includes
// all of bootstrapping being complete
steps.Condition(m.hiveClusterInstallationComplete, 60*time.Minute, true),
steps.Condition(m.hiveClusterDeploymentReady, 10*time.Minute, true),
steps.Condition(m.hiveClusterDeploymentReady, 20*time.Minute, true),
steps.Action(m.generateKubeconfigs),
)
} else {
Expand Down

0 comments on commit fa7dacd

Please sign in to comment.