diff --git a/pkg/kubelet/dockertools/docker.go b/pkg/kubelet/dockertools/docker.go index fd67d7daca4..c7bcce4c6ec 100644 --- a/pkg/kubelet/dockertools/docker.go +++ b/pkg/kubelet/dockertools/docker.go @@ -36,13 +36,6 @@ import ( "github.com/golang/glog" ) -// DockerContainerData is the structured representation of the JSON object returned by Docker inspect -type DockerContainerData struct { - state struct { - Running bool - } -} - // DockerInterface is an abstract interface for testability. It abstracts the interface of docker.Client. type DockerInterface interface { ListContainers(options docker.ListContainersOptions) ([]docker.APIContainers, error)