From d6d08b152e0b48e03928105ea7698f0e82dbbee6 Mon Sep 17 00:00:00 2001 From: mattjmcnaughton Date: Wed, 22 Jan 2020 08:45:07 -0500 Subject: [PATCH] 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. --- test/e2e_node/image_list.go | 1 - 1 file changed, 1 deletion(-) diff --git a/test/e2e_node/image_list.go b/test/e2e_node/image_list.go index dae236c57c6..2aef9388a27 100644 --- a/test/e2e_node/image_list.go +++ b/test/e2e_node/image_list.go @@ -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() }