Skip to content

Commit 613ccfd

Browse files
dockerbuild pull on Docker 1.9 is broken
We were incorrectly using tags in Repository. Tested in 1.10 and 1.9 and this code appears to be correct. Also added more error logging.
1 parent e430003 commit 613ccfd

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

pkg/util/docker/dockerfile/builder/client.go

+10-10
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ func (e *ClientExecutor) Build(r io.Reader, args map[string]string) error {
117117
}
118118
from, err = e.CreateScratchImage()
119119
if err != nil {
120-
return err
120+
return fmt.Errorf("unable to create a scratch image for this build: %v", err)
121121
}
122122
defer e.CleanupImage(from)
123123
}
@@ -157,7 +157,7 @@ func (e *ClientExecutor) Build(r io.Reader, args map[string]string) error {
157157
}
158158
v, err := e.Client.CreateVolume(docker.CreateVolumeOptions{Name: volumeName})
159159
if err != nil {
160-
return err
160+
return fmt.Errorf("unable to create volume to mount secrets: %v", err)
161161
}
162162
defer e.cleanupVolume(volumeName)
163163
sharedMount = v.Mountpoint
@@ -181,7 +181,7 @@ func (e *ClientExecutor) Build(r io.Reader, args map[string]string) error {
181181
}
182182
container, err := e.Client.CreateContainer(opts)
183183
if err != nil {
184-
return err
184+
return fmt.Errorf("unable to create build container: %v", err)
185185
}
186186
e.Container = container
187187

@@ -200,7 +200,7 @@ func (e *ClientExecutor) Build(r io.Reader, args map[string]string) error {
200200
})
201201
}
202202
if err := e.Copy(copies...); err != nil {
203-
return err
203+
return fmt.Errorf("unable to copy build context into container: %v", err)
204204
}
205205
}
206206

@@ -223,7 +223,7 @@ func (e *ClientExecutor) Build(r io.Reader, args map[string]string) error {
223223
}
224224

225225
if err := e.Client.StartContainer(e.Container.ID, &hostConfig); err != nil {
226-
return err
226+
return fmt.Errorf("unable to start build container: %v", err)
227227
}
228228
// TODO: is this racy? may have to loop wait in the actual run step
229229
}
@@ -245,7 +245,7 @@ func (e *ClientExecutor) Build(r io.Reader, args map[string]string) error {
245245
if mustStart {
246246
glog.V(4).Infof("Stopping container %s ...", e.Container.ID)
247247
if err := e.Client.StopContainer(e.Container.ID, 0); err != nil {
248-
return err
248+
return fmt.Errorf("unable to stop build container: %v", err)
249249
}
250250
}
251251

@@ -272,7 +272,7 @@ func (e *ClientExecutor) Build(r io.Reader, args map[string]string) error {
272272
Tag: tag,
273273
})
274274
if err != nil {
275-
return err
275+
return fmt.Errorf("unable to commit build container: %v", err)
276276
}
277277
e.Image = image
278278
glog.V(4).Infof("Committed %s to %s", e.Container.ID, e.Image.ID)
@@ -293,7 +293,7 @@ func (e *ClientExecutor) Cleanup() error {
293293
Force: true,
294294
})
295295
if _, ok := err.(*docker.NoSuchContainer); err != nil && !ok {
296-
return err
296+
return fmt.Errorf("unable to cleanup build container: %v", err)
297297
}
298298
e.Container = nil
299299
return nil
@@ -389,7 +389,7 @@ func (e *ClientExecutor) LoadImage(from string) (*docker.Image, error) {
389389
for _, config := range auth {
390390
// TODO: handle IDs?
391391
pullImageOptions := docker.PullImageOptions{
392-
Repository: from,
392+
Repository: repository,
393393
Tag: tag,
394394
OutputStream: imageprogress.NewPullWriter(outputProgress),
395395
RawJSONStream: true,
@@ -406,7 +406,7 @@ func (e *ClientExecutor) LoadImage(from string) (*docker.Image, error) {
406406
continue
407407
}
408408
if lastErr != nil {
409-
return nil, lastErr
409+
return nil, fmt.Errorf("unable to pull image (from: %s, tag: %s): %v", repository, tag, lastErr)
410410
}
411411

412412
return e.Client.InspectImage(from)

0 commit comments

Comments
 (0)