From 5ff5bbe3d5fc99d0a61f1f738adb7552c1503893 Mon Sep 17 00:00:00 2001 From: Bart Smykla Date: Mon, 2 Dec 2024 07:02:52 +0100 Subject: [PATCH] chore(e2e): disable flaking TrafficRoute multizone e2e_env test (#12144) Signed-off-by: Bart Smykla --- test/e2e_env/multizone/trafficroute/trafficroute.go | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/test/e2e_env/multizone/trafficroute/trafficroute.go b/test/e2e_env/multizone/trafficroute/trafficroute.go index 2cdd4b0b8280..4ca6c88e632f 100644 --- a/test/e2e_env/multizone/trafficroute/trafficroute.go +++ b/test/e2e_env/multizone/trafficroute/trafficroute.go @@ -381,7 +381,8 @@ conf: Expect(WaitForResource(mesh.TrafficRouteResourceTypeDescriptor, model.ResourceKey{Mesh: meshName, Name: hashedName}, multizone.Zones()...)).Should(Succeed()) }) - It("should loadbalance all requests equally by default", func() { + // TODO(bartsmykla): disabled while investingating flake (https://github.com/kumahq/kuma/issues/12142) + XIt("should loadbalance all requests equally by default", func() { Eventually(func() (map[string]int, error) { return client.CollectResponsesByInstance(multizone.UniZone1, "demo-client", "test-server.mesh/split", client.WithNumberOfRequests(40)) }, "30s", "500ms").Should( @@ -392,11 +393,6 @@ conf: "echo-v4": Not(BeNil()), "echo-v5": Not(BeNil()), "echo-v6": Not(BeNil()), - // todo(jakubdyszkiewicz) uncomment when https://github.com/kumahq/kuma/issues/2563 is fixed - // HaveKeyWithValue(MatchRegexp(`.*echo-v1.*`), BeNumerically("~", 10, 1)), - // HaveKeyWithValue(MatchRegexp(`.*echo-v2.*`), BeNumerically("~", 10, 1)), - // HaveKeyWithValue(MatchRegexp(`.*echo-v3.*`), BeNumerically("~", 10, 1)), - // HaveKeyWithValue(MatchRegexp(`.*echo-v4.*`), BeNumerically("~", 10, 1)), }), ) })