Skip to content

Commit 0dce4ad

Browse files
authored
chore: increase the metallb timeout (#397)
1 parent 78b1222 commit 0dce4ad

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.22.2
4+
5+
- Increased the metallb startup timeout.
6+
37
## v0.22.1
48

59
### Fixed

pkg/clusters/addons/metallb/metallb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ func createIPAddressPool(ctx context.Context, cluster clusters.Cluster, dockerNe
211211

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

214-
ctx, cancel := context.WithTimeout(ctx, time.Minute)
214+
ctx, cancel := context.WithTimeout(ctx, time.Minute*3) //nolint:gomnd
215215
defer cancel()
216216

217217
var lastErr error

0 commit comments

Comments
 (0)