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

Will allow more debugging output to be available in CLI
This commit is contained in:
Clayton Coleman 2015-01-14 12:37:40 -05:00
parent d986028cf7
commit abc621759a

View File

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