Merge pull request #26232 from vishh/25713

Automatic merge from submit-queue

Suppress non error logs from ssh commands in node e2e framework.

Fixes #25713
pull/6/head
k8s-merge-robot 2016-06-01 21:27:29 -07:00
commit 8dcedbab5d
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ func init() {
glog.Fatal(err)
}
sshOptionsMap = map[string]string{
"gce": fmt.Sprintf("-i %s/.ssh/google_compute_engine -o UserKnownHostsFile=/dev/null -o IdentitiesOnly=yes -o CheckHostIP=no -o StrictHostKeyChecking=no -o ServerAliveInterval=30", usr.HomeDir),
"gce": fmt.Sprintf("-i %s/.ssh/google_compute_engine -o UserKnownHostsFile=/dev/null -o IdentitiesOnly=yes -o CheckHostIP=no -o StrictHostKeyChecking=no -o ServerAliveInterval=30 -o LogLevel=ERROR", usr.HomeDir),
}
}