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

test: Test IPsec+VXLAN on 4.19 #17512

Merged
merged 1 commit into from
Oct 12, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 5 additions & 8 deletions test/k8sT/DatapathConfiguration.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,14 +195,11 @@ var _ = Describe("K8sDatapathConfig", func() {
}
}

SkipItIf(helpers.RunsWithoutKubeProxy, "Check connectivity with transparent encryption and VXLAN encapsulation", func() {
// FIXME(brb) Currently, the test is broken with CI 4.19 setup. Run it on 4.19
// once we have kube-proxy disabled there.
if !helpers.RunsOnNetNextKernel() {
Skip("Skipping test because it is not running with the net-next kernel")
return
}

SkipItIf(func() bool {
// IPsec + encapsulation requires Linux 4.19.
// We also can't disable KPR on GKE at the moment (cf. #16597).
return helpers.RunsWithoutKubeProxy() || helpers.DoesNotRunOn419OrLaterKernel() || helpers.RunsOnGKE()
}, "Check connectivity with transparent encryption and VXLAN encapsulation", func() {
deploymentManager.Deploy(helpers.CiliumNamespace, IPSecSecret)
options := map[string]string{
"kubeProxyReplacement": "disabled",
Expand Down