Skip to content

Commit 5fae4ba

Browse files
authored
fix: Set the client DialContext to the connhelper dialer when accessing an SSH DOCKER_HOST (GoogleContainerTools#9521)
Summary: Fixes GoogleContainerTools#9484 Test Plan: Tested skaffold over a ssh connection to minikube. This was tested with and without GoogleContainerTools#9512 in place.
1 parent bd62019 commit 5fae4ba

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pkg/skaffold/docker/client.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,11 @@ func newEnvAPIClient() ([]string, client.CommonAPIClient, error) {
104104
DialContext: helper.Dialer,
105105
},
106106
}
107-
opts = append(opts, client.WithHTTPClient(httpClient), client.WithHost(helper.Host))
107+
opts = append(opts,
108+
client.WithHTTPClient(httpClient),
109+
client.WithHost(helper.Host),
110+
client.WithDialContext(helper.Dialer),
111+
)
108112
} else {
109113
opts = append(opts, client.FromEnv)
110114
}

0 commit comments

Comments
 (0)