Skip to content

Commit

Permalink
chore(e2e): disable flaking TrafficRoute multizone e2e_env test
Browse files Browse the repository at this point in the history
Signed-off-by: Bart Smykla <[email protected]>
  • Loading branch information
bartsmykla committed Dec 2, 2024
1 parent d318db1 commit 57bc5b4
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions test/e2e_env/multizone/trafficroute/trafficroute.go
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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)),
}),
)
})
Expand Down

0 comments on commit 57bc5b4

Please sign in to comment.