File tree Expand file tree Collapse file tree 5 files changed +11
-15
lines changed Expand file tree Collapse file tree 5 files changed +11
-15
lines changed Original file line number Diff line number Diff line change 199
199
./test/images/volume/rbd/create_block.sh
200
200
./test/images/volume/rbd/mon.sh
201
201
./test/images/volume/rbd/osd.sh
202
- ./test/integration/ipamperf/test-performance.sh
203
- ./test/integration/scheduler_perf/test-performance.sh
204
202
./test/kubemark/common/util.sh
205
- ./test/kubemark/configure-kubectl.sh
206
203
./test/kubemark/gce/util.sh
207
204
./test/kubemark/iks/shutdown.sh
208
205
./test/kubemark/iks/startup.sh
209
206
./test/kubemark/iks/util.sh
210
207
./test/kubemark/master-log-dump.sh
211
- ./test/kubemark/pre-existing/util.sh
212
208
./test/kubemark/resources/start-kubemark-master.sh
213
209
./test/kubemark/run-e2e-tests.sh
214
210
./test/kubemark/start-kubemark.sh
Original file line number Diff line number Diff line change @@ -67,13 +67,13 @@ while getopts ":hdr:o:p:ca:k:n:m:l:" opt; do
67
67
esac
68
68
done
69
69
70
- KUBE_ROOT=$( dirname " ${BASH_SOURCE} " ) /../../../
70
+ KUBE_ROOT=$( dirname " ${BASH_SOURCE[0] } " ) /../../../
71
71
source " ${KUBE_ROOT} /hack/lib/init.sh"
72
72
73
73
kube::golang::setup_env
74
74
75
- DIR_BASENAME=$( dirname " ${BASH_SOURCE} " )
76
- pushd ${DIR_BASENAME}
75
+ DIR_BASENAME=$( dirname " ${BASH_SOURCE[0] } " )
76
+ pushd " ${DIR_BASENAME} "
77
77
78
78
cleanup () {
79
79
popd 2> /dev/null
@@ -87,5 +87,5 @@ kube::etcd::start
87
87
88
88
# Running IPAM tests. It might take a long time.
89
89
kube::log::status " performance test (IPAM) start"
90
- go test ${PROFILE_OPTS} -test.run=${RUN_PATTERN} -test.timeout=60m -test.short=false -v -args ${TEST_ARGS}
90
+ go test " ${PROFILE_OPTS} " -test.run=" ${RUN_PATTERN} " -test.timeout=60m -test.short=false -v -args " ${TEST_ARGS} "
91
91
kube::log::status " ... IPAM tests finished."
Original file line number Diff line number Diff line change @@ -18,13 +18,13 @@ set -o errexit
18
18
set -o nounset
19
19
set -o pipefail
20
20
21
- KUBE_ROOT=$( dirname " ${BASH_SOURCE} " ) /../../../
21
+ KUBE_ROOT=$( dirname " ${BASH_SOURCE[0] } " ) /../../../
22
22
source " ${KUBE_ROOT} /hack/lib/init.sh"
23
23
24
24
kube::golang::setup_env
25
25
26
- DIR_BASENAME=$( dirname " ${BASH_SOURCE} " )
27
- pushd ${DIR_BASENAME}
26
+ DIR_BASENAME=$( dirname " ${BASH_SOURCE[0] } " )
27
+ pushd " ${DIR_BASENAME} "
28
28
29
29
cleanup () {
30
30
popd 2> /dev/null
Original file line number Diff line number Diff line change 16
16
17
17
# This script assumes that kubectl binary is present in PATH.
18
18
kubectl config set-cluster hollow-cluster --server=http://localhost:8080 --insecure-skip-tls-verify=true
19
- kubectl config set-credentials $( whoami)
20
- kubectl config set-context hollow-context --cluster=hollow-cluster --user=$( whoami)
19
+ kubectl config set-credentials " $( whoami) "
20
+ kubectl config set-context hollow-context --cluster=hollow-cluster --user=" $( whoami) "
Original file line number Diff line number Diff line change 14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
17
- KUBE_ROOT=$( dirname " ${BASH_SOURCE} " ) /../../..
17
+ KUBE_ROOT=$( dirname " ${BASH_SOURCE[0] } " ) /../../..
18
18
19
19
source " ${KUBE_ROOT} /test/kubemark/common/util.sh"
20
20
@@ -23,5 +23,5 @@ source "${KUBE_ROOT}/test/kubemark/common/util.sh"
23
23
function execute-cmd-on-pre-existing-master-with-retries() {
24
24
IP_WITHOUT_PORT=$( echo " ${MASTER_IP} " | cut -f 1 -d ' :' ) || " ${MASTER_IP} "
25
25
26
- RETRIES=" ${2:- 1} " run-cmd-with-retries ssh kubernetes@" ${IP_WITHOUT_PORT} " $1
26
+ RETRIES=" ${2:- 1} " run-cmd-with-retries ssh kubernetes@" ${IP_WITHOUT_PORT} " " ${1} "
27
27
}
You can’t perform that action at this time.
0 commit comments