blob: 859fa3bb2cbbaa7ddf88ae3a13fb02c21f4e7903 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/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
|