Revert "Add --v=4 to e2e bash executions by default"

This reverts commit abc621759a, which
interacts weirdly with Jenkins on the GKE provider. Tactical revert
until that can be figured out:

https://github.com/GoogleCloudPlatform/kubernetes/issues/3474
This commit is contained in:
Zach Loafman 2015-01-14 13:10:45 -08:00
parent 36320f02fb
commit 0c4119fb07

View File

@ -531,9 +531,9 @@ func kubecfgArgs() string {
// kubectl command (begining with a space).
func kubectlArgs() string {
if *checkVersionSkew {
return " --match-server-version --v=4"
return " --match-server-version"
}
return " --v=4"
return ""
}
func bashWrap(cmd string) string {