WIP: temporarily avoid SSH host key checking
continuous-integration/drone/push Build is passing Details

Closes coop-cloud/organising#234.
Closes coop-cloud/organising#142.
This commit is contained in:
decentral1se 2021-11-05 12:33:32 +01:00
parent 4a0761926c
commit f9726b6643
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ import (
//
// ssh://<user>@<host> URL requires Docker 18.09 or later on the remote host.
func GetConnectionHelper(daemonURL string) (*connhelper.ConnectionHelper, error) {
return getConnectionHelper(daemonURL, []string{"-o ConnectTimeout=5"})
return getConnectionHelper(daemonURL, []string{"-o ConnectTimeout=5", "-o StrictHostKeyChecking=no"})
}
func getConnectionHelper(daemonURL string, sshFlags []string) (*connhelper.ConnectionHelper, error) {