Skip to content

Commit

Permalink
test: quarantine flaking datapathconfig tests on 1.17
Browse files Browse the repository at this point in the history
this change extends quarantine for k8s-all job to 1.17 k8s version,
which will help us checking whether 1.18 job actually fails due to these
flakes.

Signed-off-by: Maciej Kwiek <maciej@isovalent.com>
  • Loading branch information
nebril committed Nov 27, 2020
1 parent 885a319 commit 263421a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/k8sT/DatapathConfiguration.go
Expand Up @@ -256,7 +256,7 @@ var _ = Describe("K8sDatapathConfig", func() {

SkipItIf(func() bool {
// Skip K8s versions for which the test is currently flaky.
return helpers.SkipK8sVersions(">=1.13.0 <1.17.0") && helpers.SkipQuarantined()
return helpers.SkipK8sVersions(">=1.13.0 <1.18.0") && helpers.SkipQuarantined()
}, "Check vxlan connectivity with per-endpoint routes", func() {
deploymentManager.DeployCilium(map[string]string{
"tunnel": "vxlan",
Expand All @@ -274,7 +274,7 @@ var _ = Describe("K8sDatapathConfig", func() {

SkipItIf(func() bool {
// Skip K8s versions for which the test is currently flaky.
return helpers.SkipK8sVersions(">=1.13.0 <1.17.0") && helpers.SkipQuarantined()
return helpers.SkipK8sVersions(">=1.13.0 <1.18.0") && helpers.SkipQuarantined()
}, "Check iptables masquerading with random-fully", func() {
deploymentManager.DeployCilium(map[string]string{
"bpf.masquerade": "false",
Expand Down

0 comments on commit 263421a

Please sign in to comment.