@@ -11,6 +11,7 @@ import (
11
11
"strings"
12
12
"time"
13
13
14
+ "github.com/golang/glog"
14
15
"github.com/spf13/cobra"
15
16
16
17
"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
@@ -142,7 +143,7 @@ func parseDockerTimestamp(s string) (time.Time, error) {
142
143
}
143
144
144
145
func doGarbageCollection (ctx context.Context , client * dockerapi.Client , options * dockerGCConfigCmdOptions , rootDir string ) error {
145
- fmt . Println ("gathering disk usage data" )
146
+ glog . Infof ("gathering disk usage data" )
146
147
capacityBytes , usageBytes , err := getRootDirInfo (rootDir )
147
148
if err != nil {
148
149
return err
@@ -151,13 +152,13 @@ func doGarbageCollection(ctx context.Context, client *dockerapi.Client, options
151
152
highThresholdBytes := capacityBytes * int64 (options .ImageGCHighThresholdPercent ) / 100
152
153
lowThresholdBytes := capacityBytes * int64 (options .ImageGCLowThresholdPercent ) / 100
153
154
if usageBytes < highThresholdBytes {
154
- fmt . Printf ("usage is under high threshold (%vMB < %vMB)\n " , bytesToMB (usageBytes ), bytesToMB (highThresholdBytes ))
155
+ glog . Infof ("usage is under high threshold (%vMB < %vMB)" , bytesToMB (usageBytes ), bytesToMB (highThresholdBytes ))
155
156
return nil
156
157
}
157
158
158
159
attemptToFreeBytes := usageBytes - lowThresholdBytes
159
160
freedBytes := int64 (0 )
160
- fmt . Printf ("usage exceeds high threshold (%vMB > %vMB), attempting to free %vMB\n " , bytesToMB (usageBytes ), bytesToMB (highThresholdBytes ), bytesToMB (attemptToFreeBytes ))
161
+ glog . Infof ("usage exceeds high threshold (%vMB > %vMB), attempting to free %vMB" , bytesToMB (usageBytes ), bytesToMB (highThresholdBytes ), bytesToMB (attemptToFreeBytes ))
161
162
162
163
// conatiners
163
164
exitedFilter := dockerfilters .NewArgs ()
@@ -169,22 +170,22 @@ func doGarbageCollection(ctx context.Context, client *dockerapi.Client, options
169
170
if err != nil {
170
171
return err
171
172
}
172
- fmt . Println ( len ( containers ), " exited containers found" )
173
+ glog . Infof ( "%d exited containers found", len ( containers ) )
173
174
sort .Sort (oldestContainersFirst (containers ))
174
175
for _ , c := range containers {
175
176
if freedBytes > attemptToFreeBytes {
176
- fmt . Printf ("usage is below low threshold, freed %vMB\n " , bytesToMB (freedBytes ))
177
+ glog . Infof ("usage is below low threshold, freed %vMB" , bytesToMB (freedBytes ))
177
178
return nil
178
179
}
179
180
age := time .Now ().Sub (time .Unix (c .Created , 0 ))
180
181
if age < options .MinimumGCAge .Duration {
181
- fmt . Println ("remaining containers are too young" )
182
+ glog . Infof ("remaining containers are too young" )
182
183
break
183
184
}
184
- fmt . Printf ("removing container %v (size: %v, age: %v)\n " , c .ID , c .SizeRw , age )
185
+ glog . Infof ("removing container %v (size: %v, age: %v)" , c .ID , c .SizeRw , age )
185
186
err := client .ContainerRemove (ctx , c .ID , dockertypes.ContainerRemoveOptions {RemoveVolumes : true })
186
187
if err != nil {
187
- fmt . Printf ("unable to remove container: %v" , err )
188
+ glog . Infof ("unable to remove container: %v" , err )
188
189
} else {
189
190
freedBytes += c .SizeRw
190
191
}
@@ -201,27 +202,27 @@ func doGarbageCollection(ctx context.Context, client *dockerapi.Client, options
201
202
sort .Sort (oldestImagesFirst (images ))
202
203
for _ , i := range images {
203
204
if freedBytes > attemptToFreeBytes {
204
- fmt . Printf ("usage is below low threshold, freed %vMB\n " , bytesToMB (freedBytes ))
205
+ glog . Infof ("usage is below low threshold, freed %vMB" , bytesToMB (freedBytes ))
205
206
return nil
206
207
}
207
208
// filter openshift infra images
208
209
if len (i .RepoTags ) > 0 {
209
210
if strings .HasPrefix (i .RepoTags [0 ], "registry.ops.openshift.com/openshift3" ) ||
210
211
strings .HasPrefix (i .RepoTags [0 ], "docker.io/openshift" ) {
211
- fmt . Println ("skipping infra image" , i .RepoTags [0 ])
212
+ glog . Infof ("skipping infra image: %v " , i .RepoTags [0 ])
212
213
continue
213
214
}
214
215
}
215
216
// filter young images
216
217
age := time .Now ().Sub (time .Unix (i .Created , 0 ))
217
218
if age < options .MinimumGCAge .Duration {
218
- fmt . Println ("remaining images are too young" )
219
+ glog . Infof ("remaining images are too young" )
219
220
break
220
221
}
221
- fmt . Printf ("removing image %v (size: %v, age: %v)\n " , i .ID , i .Size , age )
222
+ glog . Infof ("removing image %v (size: %v, age: %v)" , i .ID , i .Size , age )
222
223
_ , err := client .ImageRemove (ctx , i .ID , dockertypes.ImageRemoveOptions {PruneChildren : true })
223
224
if err != nil {
224
- fmt . Printf ("unable to remove image: %v" , err )
225
+ glog . Infof ("unable to remove image: %v" , err )
225
226
} else {
226
227
freedBytes += i .Size
227
228
}
@@ -232,8 +233,8 @@ func doGarbageCollection(ctx context.Context, client *dockerapi.Client, options
232
233
233
234
// Run runs the dockergc command.
234
235
func Run (f * clientcmd.Factory , options * dockerGCConfigCmdOptions , cmd * cobra.Command , args []string ) error {
235
- fmt . Println ("docker build garbage collection daemon" )
236
- fmt . Printf ("MinimumGCAge: %v, ImageGCHighThresholdPercent: %v, ImageGCLowThresholdPercent: %v\n " , options .MinimumGCAge , options .ImageGCHighThresholdPercent , options .ImageGCLowThresholdPercent )
236
+ glog . Infof ("docker build garbage collection daemon" )
237
+ glog . Infof ("MinimumGCAge: %v, ImageGCHighThresholdPercent: %v, ImageGCLowThresholdPercent: %v" , options .MinimumGCAge , options .ImageGCHighThresholdPercent , options .ImageGCLowThresholdPercent )
237
238
client , err := dockerapi .NewEnvClient ()
238
239
if err != nil {
239
240
return err
0 commit comments