kubernetes/test/kubemark
Ismo Puustinen d4365e056f start-kubemark.sh: clean up the shell script.
Do some cleanups to start-kubemark.sh.

1. Add double quotes around variables which are expanded. This is done
   even on those variables which probably won't have spaces, globs or
   similar (such as $MASTER_IP) to stay consistent.

2. In one place, change old-type `...` subshell invocation to $(...) to
   stay consistent through the file.

3. Remove useless echo commands in expressions: FOO=$(echo "$bar")
   becomes FOO="$bar".

4. In a few places, remove double quotes around variables when an
   expression is already inside them: the variables would have been
   effectively unquoted.

The last change in the patch changes the printing a bit -- the old way
did not print whitespace correctly due to inner echo missing the quotes
around it. The change should fix the printout:

-      echo $(echo "${pods}" | grep -v "Running")
+      echo "${pods}" | grep -v Running
2018-08-22 11:57:57 +03:00
..
common Unify bazel and makefile modes of build for kubemark 2018-07-05 11:01:17 +02:00
gce Make docker authentication in kubemark provider-independent 2018-07-05 11:01:22 +02:00
iks Added check for namespace file 2018-07-31 14:08:04 -04:00
pre-existing Update all script to use /usr/bin/env bash in shebang 2018-04-19 13:20:13 +02:00
resources Merge pull request #67660 from vikaschoudhary16/fsnotify-limits 2018-08-21 10:14:04 -07:00
skeleton Make docker authentication in kubemark provider-independent 2018-07-05 11:01:22 +02:00
BUILD Use buildozer to delete licenses() rules except under third_party/ 2017-08-11 09:32:39 -07:00
cloud-provider-config.sh Update all script to use /usr/bin/env bash in shebang 2018-04-19 13:20:13 +02:00
configure-kubectl.sh Update all script to use /usr/bin/env bash in shebang 2018-04-19 13:20:13 +02:00
master-log-dump.sh Update all script to use /usr/bin/env bash in shebang 2018-04-19 13:20:13 +02:00
OWNERS Added OWNERS to kubemark subdirectories 2017-01-25 14:37:57 +01:00
run-e2e-tests.sh Update all script to use /usr/bin/env bash in shebang 2018-04-19 13:20:13 +02:00
start-kubemark.sh start-kubemark.sh: clean up the shell script. 2018-08-22 11:57:57 +03:00
stop-kubemark.sh Adding IKS functionality to kubemark 2018-07-23 11:42:22 -04:00