Skip to content

Commit 4ec0e5e

Browse files
Fix oc image mirror post rebase changes
1 parent 81426ee commit 4ec0e5e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

pkg/oc/cli/cmd/image/mirror/mirror.go

+7-2
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,12 @@ type pushOptions struct {
101101
AttemptS3BucketCopy []string
102102
}
103103

104+
// schema2ManifestOnly specifically requests a manifest list first
105+
var schema2ManifestOnly = distribution.WithManifestMediaTypes([]string{
106+
manifestlist.MediaTypeManifestList,
107+
schema2.MediaTypeManifest,
108+
})
109+
104110
// NewCommandMirrorImage copies images from one location to another.
105111
func NewCmdMirrorImage(name string, out, errOut io.Writer) *cobra.Command {
106112
o := &pushOptions{}
@@ -398,8 +404,7 @@ func (o *pushOptions) Run() error {
398404
for srcDigestString, pushTargets := range src.digests {
399405
// load the manifest
400406
srcDigest := godigest.Digest(srcDigestString)
401-
// var contentDigest godigest.Digest / client.ReturnContentDigest(&contentDigest),
402-
srcManifest, err := manifests.Get(ctx, godigest.Digest(srcDigest), distribution.WithTag(manifestlist.MediaTypeManifestList), distribution.WithTag(schema2.MediaTypeManifest))
407+
srcManifest, err := manifests.Get(ctx, godigest.Digest(srcDigest), schema2ManifestOnly)
403408
if err != nil {
404409
digestErrs = append(digestErrs, retrieverError{src: src.ref, err: fmt.Errorf("unable to retrieve source image %s manifest: %v", src.ref, err)})
405410
continue

0 commit comments

Comments
 (0)