From 16d20494e2685e68d7a131d86d60a6fd81f33d7a Mon Sep 17 00:00:00 2001 From: Krisztian Litkey Date: Thu, 19 Sep 2024 11:14:49 +0300 Subject: [PATCH] e2e: use bridge CNI by default. Switch to using the bridge CNI plugin by default. With the latest playbook fixes it should work now and it is the fastest to set up. The latest cilium release is hosed, so it's a good time to switch: https://github.com/cilium/cilium-cli/issues/2795 Signed-off-by: Krisztian Litkey --- test/e2e/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/run.sh b/test/e2e/run.sh index 185c9b75e..e9d438837 100755 --- a/test/e2e/run.sh +++ b/test/e2e/run.sh @@ -19,7 +19,7 @@ export COMMAND_OUTPUT_DIR="$TEST_OUTPUT_DIR"/commands distro=${distro:-$DEFAULT_DISTRO} export k8scri=${k8scri:-"containerd"} -export cni_plugin=${cni_plugin:-cilium} +export cni_plugin=${cni_plugin:-bridge} export cni_release=${cni_release:-latest} TOPOLOGY_DIR=${TOPOLOGY_DIR:=e2e}