mirror of https://github.com/k3s-io/k3s
Merge pull request #26232 from vishh/25713
Automatic merge from submit-queue Suppress non error logs from ssh commands in node e2e framework. Fixes #25713pull/6/head
commit
8dcedbab5d
|
@ -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),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue