Skip to content

Commit 5226d3f

Browse files
authored
Merge pull request #13127 from fabriziopandini/skip-test-using-outdated-docker-client-release-1.11
[release-1.11] 🌱 Skip test using outdated docker client
2 parents 6be63ce + 96fd28a commit 5226d3f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

test/e2e/clusterctl_upgrade_test.go

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ package e2e
2121

2222
import (
2323
"fmt"
24-
"runtime"
2524
"strings"
2625

2726
. "github.com/onsi/ginkgo/v2"
@@ -41,6 +40,9 @@ var (
4140
providerDockerPrefix = "docker:v%s"
4241
)
4342

43+
/*
44+
After test-infra upgrade to docker engine 29.1.2, following tests are failing because the docker client in CAPI 0.3/CAPI0.4 is too old.
45+
4446
// Note: This test should not be changed during "prepare main branch".
4547
var _ = Describe("When testing clusterctl upgrades (v0.3=>v1.5=>current)", FlakeAttempts(2), func() {
4648
// We are testing v0.3=>v1.5=>current to ensure that old entries with v1alpha3 in managed files do not cause issues
@@ -199,7 +201,8 @@ var _ = Describe("When testing clusterctl upgrades (v0.4=>v1.6=>current)", Flake
199201
UseKindForManagementCluster: true,
200202
}
201203
})
202-
})
204+
}).
205+
*/
203206

204207
// Note: This test should be changed during "prepare main branch", it should test n-3 => current.
205208
var _ = Describe("When testing clusterctl upgrades using ClusterClass (v1.8=>current) [ClusterClass]", Label("ClusterClass"), func() {

0 commit comments

Comments
 (0)