1
1
package dockergc
2
2
3
3
import (
4
- "context"
5
4
"fmt"
6
5
"io"
7
6
"os"
@@ -17,7 +16,6 @@ import (
17
16
"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
18
17
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
19
18
20
- dockerapi "github.com/docker/engine-api/client"
21
19
dockertypes "github.com/docker/engine-api/types"
22
20
dockerfilters "github.com/docker/engine-api/types/filters"
23
21
"github.com/openshift/origin/pkg/oc/cli/util/clientcmd"
@@ -31,6 +29,8 @@ const (
31
29
32
30
var (
33
31
DefaultMinimumGCAge = metav1.Duration {Duration : time .Hour }
32
+
33
+ dockerTimeout = time .Duration (2 * time .Minute )
34
34
)
35
35
36
36
// DockerGCConfigCmdOptions are options supported by the dockergc admin command.
@@ -146,7 +146,7 @@ func parseDockerTimestamp(s string) (time.Time, error) {
146
146
return time .Parse (time .RFC3339Nano , s )
147
147
}
148
148
149
- func doGarbageCollection (ctx context. Context , client * dockerapi. Client , options * dockerGCConfigCmdOptions , rootDir string ) error {
149
+ func doGarbageCollection (client * dockerClient , options * dockerGCConfigCmdOptions , rootDir string ) error {
150
150
glog .Infof ("gathering disk usage data" )
151
151
capacityBytes , usageBytes , err := getRootDirInfo (rootDir )
152
152
if err != nil {
@@ -167,10 +167,7 @@ func doGarbageCollection(ctx context.Context, client *dockerapi.Client, options
167
167
// conatiners
168
168
exitedFilter := dockerfilters .NewArgs ()
169
169
exitedFilter .Add ("status" , "exited" )
170
- containers , err := client .ContainerList (ctx , dockertypes.ContainerListOptions {All : true , Filter : exitedFilter })
171
- if ctx .Err () == context .DeadlineExceeded {
172
- return ctx .Err ()
173
- }
170
+ containers , err := client .ContainerList (dockertypes.ContainerListOptions {All : true , Filter : exitedFilter })
174
171
if err != nil {
175
172
return err
176
173
}
@@ -189,7 +186,7 @@ func doGarbageCollection(ctx context.Context, client *dockerapi.Client, options
189
186
glog .Infof ("removing container %v (size: %v, age: %v)" , c .ID , c .SizeRw , age )
190
187
var err error
191
188
if ! options .DryRun {
192
- err = client .ContainerRemove (ctx , c .ID , dockertypes.ContainerRemoveOptions {RemoveVolumes : true })
189
+ err = client .ContainerRemove (c .ID , dockertypes.ContainerRemoveOptions {RemoveVolumes : true })
193
190
}
194
191
if err != nil {
195
192
glog .Infof ("unable to remove container: %v" , err )
@@ -199,10 +196,7 @@ func doGarbageCollection(ctx context.Context, client *dockerapi.Client, options
199
196
}
200
197
201
198
// images
202
- images , err := client .ImageList (ctx , dockertypes.ImageListOptions {})
203
- if ctx .Err () == context .DeadlineExceeded {
204
- return ctx .Err ()
205
- }
199
+ images , err := client .ImageList (dockertypes.ImageListOptions {})
206
200
if err != nil {
207
201
return err
208
202
}
@@ -230,7 +224,7 @@ func doGarbageCollection(ctx context.Context, client *dockerapi.Client, options
230
224
glog .Infof ("removing image %v (size: %v, age: %v)" , i .ID , i .Size , age )
231
225
var err error
232
226
if ! options .DryRun {
233
- _ , err = client .ImageRemove (ctx , i .ID , dockertypes.ImageRemoveOptions {PruneChildren : true })
227
+ err = client .ImageRemove (i .ID , dockertypes.ImageRemoveOptions {PruneChildren : true })
234
228
}
235
229
if err != nil {
236
230
glog .Infof ("unable to remove image: %v" , err )
@@ -250,14 +244,12 @@ func Run(f *clientcmd.Factory, options *dockerGCConfigCmdOptions, cmd *cobra.Com
250
244
glog .Infof ("Running in dry-run mode" )
251
245
}
252
246
glog .Infof ("MinimumGCAge: %v, ImageGCHighThresholdPercent: %v, ImageGCLowThresholdPercent: %v" , options .MinimumGCAge , options .ImageGCHighThresholdPercent , options .ImageGCLowThresholdPercent )
253
- client , err := dockerapi . NewEnvClient ( )
247
+ client , err := newDockerClient ( dockerTimeout )
254
248
if err != nil {
255
249
return err
256
250
}
257
- timeout := time .Duration (2 * time .Minute )
258
- ctx , cancel := context .WithTimeout (context .Background (), timeout )
259
- defer cancel ()
260
- info , err := client .Info (ctx )
251
+
252
+ info , err := client .Info ()
261
253
if err != nil {
262
254
return err
263
255
}
@@ -270,7 +262,7 @@ func Run(f *clientcmd.Factory, options *dockerGCConfigCmdOptions, cmd *cobra.Com
270
262
}
271
263
272
264
for {
273
- err := doGarbageCollection (ctx , client , options , rootDir )
265
+ err := doGarbageCollection (client , options , rootDir )
274
266
if err != nil {
275
267
return err
276
268
}
0 commit comments