Delete TODO to use docker client

Re conversation in https://github.com/kubernetes/kubernetes/pull/87373,
we should keep the current behavior (i.e. using the docker binary
instead of the docker client). Delete the TODO instructing us to change
the behavior.
This commit is contained in:
mattjmcnaughton 2020-01-22 08:45:07 -05:00
parent dcd0755f84
commit d6d08b152e
No known key found for this signature in database
GPG Key ID: BC530981A9A1CC9D

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()
}