Skip to content

Commit 5b87d6a

Browse files
authored
chore: bump metallb to 0.14.8 (#1154)
1 parent f426ff4 commit 5b87d6a

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

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

3+
## v0.47.2
4+
5+
- Updated metallb to 0.14.8
6+
[#1154](https://github.com/Kong/kubernetes-testing-framework/pull/1154)
7+
38
## v0.47.1
49

510
- Adapt Kong addon to the `kong/kong` Helm chart v2.39.0 that requires

pkg/clusters/addons/metallb/metallb.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ func (a *Addon) DumpDiagnostics(context.Context, clusters.Cluster) (map[string][
144144
// -----------------------------------------------------------------------------
145145

146146
var (
147-
metalManifest = "https://github.com/metallb/metallb/config/native?ref=v0.13.12&timeout=2m"
147+
metalManifest = "https://github.com/metallb/metallb/config/native?ref=v0.14.8&timeout=2m"
148148
secretKeyLen = 128
149149
)
150150

@@ -241,7 +241,6 @@ func createIPAddressPool(ctx context.Context, cluster clusters.Cluster, dockerNe
241241
},
242242
},
243243
}, metav1.CreateOptions{})
244-
245244
if err != nil {
246245
if apierrors.IsAlreadyExists(err) {
247246
// delete the existing resource and recreate it in another round of loop.
@@ -284,7 +283,6 @@ func createL2Advertisement(ctx context.Context, cluster clusters.Cluster) error
284283
},
285284
},
286285
}, metav1.CreateOptions{})
287-
288286
if err != nil {
289287
if apierrors.IsAlreadyExists(err) {
290288
// delete the existing resource and recreate it in another round of loop.

0 commit comments

Comments
 (0)