Skip to content

Commit

Permalink
ci: quarantine K8sAgentIstioTest
Browse files Browse the repository at this point in the history
This test has been consistently failing since March 10 on Kernel 4.19
pipelines for K8s 1.17 - 1.24.

Since we are considering deprecating the Istio integration
(#24204), we quarantine the test
as it's unclear if we should invest in understanding the issue and
fixing it.

Signed-off-by: Nicolas Busseneau <nicolas@isovalent.com>
  • Loading branch information
nbusseneau committed Mar 20, 2023
1 parent dcabee2 commit 64ef7f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/k8s/istio.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ import (
// Documentation/gettingstarted/istio.rst.
// The 5.4 CI job is intended to catch BPF complexity regressions and as such
// doesn't need to execute this test suite.
var _ = SkipDescribeIf(helpers.RunsOn54Kernel, "K8sAgentIstioTest", func() {
// QUARANTINED: The test is consistently failing since on Kernel 4.19 pipelines
// for K8s 1.17 - 1.24 with the following issue: https://github.com/cilium/cilium/issues/24475
var _ = SkipDescribeIf(func() bool { return helpers.RunsOn54Kernel() || helpers.SkipQuarantined() }, "K8sAgentIstioTest", func() {

var (
// istioSystemNamespace is the default namespace into which Istio is
Expand Down

0 comments on commit 64ef7f1

Please sign in to comment.