summaryrefslogtreecommitdiffstats
path: root/vagrant/tests/multus.sh
diff options
context:
space:
mode:
Diffstat (limited to 'vagrant/tests/multus.sh')
-rwxr-xr-xvagrant/tests/multus.sh40
1 files changed, 0 insertions, 40 deletions
diff --git a/vagrant/tests/multus.sh b/vagrant/tests/multus.sh
deleted file mode 100755
index 859fa3bb..00000000
--- a/vagrant/tests/multus.sh
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/bash
-# SPDX-license-identifier: Apache-2.0
-##############################################################################
-# Copyright (c) 2018
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
-
-set -o errexit
-set -o nounset
-set -o pipefail
-
-source _common.sh
-source _functions.sh
-
-csar_id=49408ca6-b75b-11e8-8076-525400feed26
-
-# Setup
-populate_CSAR_multus $csar_id
-
-pushd ${CSAR_DIR}/${csar_id}
-kubectl apply -f bridge-network.yaml
-
-setup $multus_deployment_name
-
-# Test
-deployment_pod=$(kubectl get pods | grep $multus_deployment_name | awk '{print $1}')
-echo "===== $deployment_pod details ====="
-kubectl exec -it $deployment_pod -- ip a
-multus_nic=$(kubectl exec -it $deployment_pod -- ifconfig | grep "eth1")
-if [ -z "$multus_nic" ]; then
- echo "The $deployment_pod pod doesn't contain the eth1 nic"
- exit 1
-fi
-popd
-
-# Teardown
-teardown $multus_deployment_name