E2E node: temporarily disable flaky "pull from private registry"

This considerably impacts the ability to merge PRs right now because it fails
in the merge-blocking pull-kubernetes-node-e2e-containerd. Attempts to fix
it seem to be incomplete and need further
discussion (https://github.com/kubernetes/kubernetes/pull/135142),
so let's instead disable the test in the job.
This commit is contained in:
Patrick Ohly
2025-11-06 07:48:42 +01:00
parent 26a2945d5d
commit 1499524e8e

View File

@@ -76,7 +76,7 @@ var _ = SIGDescribe("Container Runtime Conformance Test", func() {
})
})
f.It(testCase.description+"", f.WithNodeConformance(), func(ctx context.Context) {
f.It(testCase.description+"", f.WithNodeConformance(), f.WithFlaky() /* https://github.com/kubernetes/kubernetes/issues/134998 */, func(ctx context.Context) {
name := "image-pull-test"
container := node.ConformanceContainer{
PodClient: e2epod.NewPodClient(f),