Skip to content

Commit

Permalink
chore: increase the metallb timeout (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
rainest committed Sep 27, 2022
1 parent 78b1222 commit 0dce4ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.22.2

- Increased the metallb startup timeout.

## v0.22.1

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pkg/clusters/addons/metallb/metallb.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ func createIPAddressPool(ctx context.Context, cluster clusters.Cluster, dockerNe

res := dynamicClient.Resource(ipapResource).Namespace(DefaultNamespace)

ctx, cancel := context.WithTimeout(ctx, time.Minute)
ctx, cancel := context.WithTimeout(ctx, time.Minute*3) //nolint:gomnd
defer cancel()

var lastErr error
Expand Down

0 comments on commit 0dce4ad

Please sign in to comment.