Commit 8dcedbab authored by k8s-merge-robot's avatar k8s-merge-robot

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
parents 745eb08e c7dd4fb1
...@@ -47,7 +47,7 @@ func init() { ...@@ -47,7 +47,7 @@ func init() {
glog.Fatal(err) glog.Fatal(err)
} }
sshOptionsMap = map[string]string{ 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),
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment