From 8619ecac4a71899d650cd26b2a90831ce77cd936 Mon Sep 17 00:00:00 2001 From: Antonin Bas Date: Mon, 23 Aug 2021 10:41:57 -0700 Subject: [PATCH] Stop forcing tunnel type to VXLAN for Kind NetworkPolicy tests A patch was merged in upstream OVS and we picked up this patch when we upgraded to OVS 2.15.1. Fixes #897 Signed-off-by: Antonin Bas --- ci/kind/test-e2e-kind.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ci/kind/test-e2e-kind.sh b/ci/kind/test-e2e-kind.sh index bdc2df76f6f..0e8e9a429b9 100755 --- a/ci/kind/test-e2e-kind.sh +++ b/ci/kind/test-e2e-kind.sh @@ -108,10 +108,7 @@ fi if $endpointslice; then manifest_args="$manifest_args --endpointslice" fi -if $np; then - # See https://github.com/antrea-io/antrea/issues/897 - manifest_args="$manifest_args --tun vxlan" -else +if ! $np; then manifest_args="$manifest_args --no-np" fi