Skip to content

Commit 5809056

Browse files
Merge pull request #17395 from liggitt/normalize-cluster-up
Automatic merge from submit-queue (batch tested with PRs 17395, 17385). Normalize image ref before pulling in cluster up Fixes #17394 /test extended_clusterup
2 parents 4a76a82 + 6fc3c5a commit 5809056

File tree

1 file changed

+8
-1
lines changed
  • pkg/oc/bootstrap/docker/dockerhelper

1 file changed

+8
-1
lines changed

pkg/oc/bootstrap/docker/dockerhelper/helper.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import (
1010
"regexp"
1111
"strconv"
1212

13+
"github.com/docker/distribution/reference"
1314
"github.com/docker/engine-api/client"
1415
"github.com/docker/engine-api/types"
1516
"github.com/golang/glog"
@@ -146,7 +147,13 @@ func (h *Helper) CheckAndPull(image string, out io.Writer) error {
146147
if glog.V(5) {
147148
outputStream = out
148149
}
149-
err = h.client.ImagePull(image, types.ImagePullOptions{}, outputStream)
150+
151+
normalized, err := reference.ParseNormalizedNamed(image)
152+
if err != nil {
153+
return err
154+
}
155+
156+
err = h.client.ImagePull(normalized.String(), types.ImagePullOptions{}, outputStream)
150157
if err != nil {
151158
return starterrors.NewError("error pulling Docker image %s", image).WithCause(err)
152159
}

0 commit comments

Comments
 (0)