From 1499524e8e97c0fbb8d9315eb8c16ff7ae2dbbae Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Thu, 6 Nov 2025 07:48:42 +0100 Subject: [PATCH] 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. --- test/e2e_node/runtime_conformance_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e_node/runtime_conformance_test.go b/test/e2e_node/runtime_conformance_test.go index b40c6fd7320..54938f3e118 100644 --- a/test/e2e_node/runtime_conformance_test.go +++ b/test/e2e_node/runtime_conformance_test.go @@ -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),