forked from kubernetes/perf-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-e2e.sh
executable file
·57 lines (53 loc) · 2.1 KB
/
run-e2e.sh
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash
# Copyright 2017 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -o nounset
set -o pipefail
PERFTEST_ROOT=$(dirname "${BASH_SOURCE}")
echo "TOOL_NAME: $1"
# TODO(kubernetes/perf-tests/issues/1624): Get rid of the logic below.
# Print the git history. This is useful in the CI jobs as it provides an ability
# to check the exact k8s.io/perf-tests commit (commits) a test was run against.
if [[ "${PERF_TESTS_PRINT_COMMIT_HISTORY:-false}" == "true" ]]; then
# The output file location assumes the script works inside a prow job.
output_file="${ARTIFACTS}/perf-tests.gitlog"
echo "k8s.io/perf-tests git log:" | tee $output_file || true
git -C $PERFTEST_ROOT log -n 10 --format="%H - %ad (%s)" --date=local | tee -a $output_file || true
fi
case "$1" in
cluster-loader2 )
#CLUSTERLOADER2
echo "COMMAND: ${PERFTEST_ROOT}/clusterloader2 && ./run-e2e.sh ${@:2}"
cd ${PERFTEST_ROOT}/clusterloader2 && ./run-e2e.sh ${@:2}
exit
;;
network-performance )
#NETPERF
cd ${PERFTEST_ROOT}/network/benchmarks/netperf/ && go run ./launch.go --kubeConfig="${HOME}/.kube/config" --hostnetworking --iterations 1
exit
;;
kube-dns|core-dns|node-local-dns )
cd ${PERFTEST_ROOT}/dns
./run $@
exit
;;
--help | -h )
echo " cluster-loader2 Run Cluster Loader 2 Test"
echo " network-performance Run Network Performance Test"
echo " kube-dns Run Kube-DNS test"
echo " core-dns Run Core-DNS test"
echo " node-local-dns Run NodeLocalDNS test"
exit
;;
esac