Merge pull request #87456 from mattjmcnaughton/mattjmcnaughton/delete-todo-to-use-docker-client

Delete TODO to use docker client
This commit is contained in:
Kubernetes Prow Robot 2020-01-22 20:37:37 -08:00 committed by GitHub
commit 4fc5254c2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,7 +95,6 @@ func (dp *dockerPuller) Name() string {
}
func (dp *dockerPuller) Pull(image string) ([]byte, error) {
// TODO(random-liu): Use docker client to get rid of docker binary dependency.
return exec.Command("docker", "pull", image).CombinedOutput()
}