From c0df28a6513c89144128fb796d340be09aba4379 Mon Sep 17 00:00:00 2001 From: Stephen Kitt Date: Mon, 28 Aug 2023 11:19:03 +0200 Subject: [PATCH] Drop the networkplugin-syncer system test networkplugin-syncer is no longer deployed so the test always fails and is irrelevant. Signed-off-by: Stephen Kitt --- scripts/test/system.sh | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/scripts/test/system.sh b/scripts/test/system.sh index f80fcd576..286b5b2f5 100755 --- a/scripts/test/system.sh +++ b/scripts/test/system.sh @@ -99,8 +99,6 @@ function verify_subm_deployed() { if [[ "$GLOBALNET" == true ]]; then verify_daemonset submariner-globalnet fi - - verify_network_plugin_syncer } # Uses `jq` to extract the content using the filter given, and matches it to the expected value @@ -460,17 +458,6 @@ function verify_subm_gateway_secrets() { verify_secrets "$subm_ns" "$operator_deployment_name" "${SUBMARINER_BROKER_CA:0:50}" } -function verify_network_plugin_syncer { - # Verify service account - kubectl get sa --namespace=$subm_ns submariner-networkplugin-syncer - - # Verify cluster reole - kubectl get clusterrole submariner-networkplugin-syncer - - # Verify cluster role binding - kubectl get clusterrolebinding submariner-networkplugin-syncer -} - function deploy_env_once() { if with_context "${clusters[0]}" kubectl wait --for condition=Ready pods -l app=submariner-gateway -n "${subm_ns}" --timeout=3s > /dev/null 2>&1; then echo "Submariner already deployed, skipping deployment..."