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..."