Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(e2e): disable flaking TrafficRoute multizone e2e_env test #12143

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading