From 3065ae70f4ef126fc37be44d4fede88e81449c32 Mon Sep 17 00:00:00 2001 From: Thomas Graf Date: Thu, 20 Feb 2020 01:37:46 +0100 Subject: [PATCH] test: Disable Geneve encapsulation tests on GKE GKE currently doesn't support Geneve: level=warning msg="+ ip link add name cilium_geneve address a6:04:9c:c0:d2:5b mtu 1460 type geneve external" subsys=datapath-loader level=warning msg="RTNETLINK answers: Operation not supported" subsys=datapath-loader Signed-off-by: Thomas Graf --- test/k8sT/DatapathConfiguration.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/k8sT/DatapathConfiguration.go b/test/k8sT/DatapathConfiguration.go index f963a42d1064..f627411044ee 100644 --- a/test/k8sT/DatapathConfiguration.go +++ b/test/k8sT/DatapathConfiguration.go @@ -253,6 +253,9 @@ var _ = Describe("K8sDatapathConfig", func() { }, 600) It("Check connectivity with Geneve encapsulation", func() { + // Geneve is currently not supported on GKE + SkipIfIntegration(helpers.CIIntegrationGKE) + deployCilium(map[string]string{ "global.tunnel": "geneve", })