Fix nil docker client (how did this ever work???)

This commit is contained in:
Daniel Smith
2014-11-04 16:58:37 -08:00
parent 652a0ce4db
commit 4b16e979e6
2 changed files with 3 additions and 3 deletions

View File

@@ -73,7 +73,7 @@ func NewMainKubelet(
resyncInterval: ri,
networkContainerImage: ni,
podWorkers: newPodWorkers(),
runner: dockertools.NewDockerContainerCommandRunner(),
runner: dockertools.NewDockerContainerCommandRunner(dc),
httpClient: &http.Client{},
pullQPS: pullQPS,
pullBurst: pullBurst,