Skip to content

Commit 08b6b93

Browse files
committed
require cache
Signed-off-by: Austin Abro <[email protected]>
1 parent f717021 commit 08b6b93

File tree

1 file changed

+8
-12
lines changed
  • src/internal/packager/images

1 file changed

+8
-12
lines changed

src/internal/packager/images/pull.go

+8-12
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ func pullFromDockerDaemon(ctx context.Context, daemonPullInfo []imageDaemonPullI
8383
}
8484
defer cli.Close()
8585
cli.NegotiateAPIVersion(ctx)
86-
// Note: ImageSave accepts a ocispec.Platform, BUT the effects it would have on users without client API version 1.48
87-
// which was released in Feb 2025 is unclear. This could make the code more efficient in some cases, but we are
86+
// Note: ImageSave accepts a ocispec.Platform, but the effects it would have on users without client API version 1.48,
87+
// which was released in Feb 2025, is unclear. This could make the code more efficient in some cases, but we are
8888
// avoiding this for now to give users more time to update.
8989
imageReader, err := cli.ImageSave(ctx, []string{pullInfo.registryOverrideRef})
9090
if err != nil {
@@ -281,8 +281,8 @@ func Pull(ctx context.Context, cfg PullConfig) (map[transform.Image]ocispec.Mani
281281
return nil
282282
}
283283
}
284-
if desc.MediaType == ocispec.MediaTypeImageManifest || desc.MediaType == DockerMediaTypeManifest {
285-
// Both manifest types can be marshalled into a manifest
284+
if isManifest(desc.MediaType) {
285+
// Both oci and docker manifest types can be marshalled into a manifest
286286
// https://github.com/oras-project/oras-go/blob/853e0125ccad32ff691e4ed70e156c7619021bfd/internal/manifestutil/parser.go#L37
287287
var manifest ocispec.Manifest
288288
if err := json.Unmarshal(b, &manifest); err != nil {
@@ -352,15 +352,11 @@ func orasSave(ctx context.Context, imagesInfo []imagePullInfo, cfg PullConfig, d
352352
copyOpts.Concurrency = cfg.Concurrency
353353
copyOpts.WithTargetPlatform(imageInfo.manifestDesc.Platform)
354354
l.Info("saving image", "name", imageInfo.registryOverrideRef, "size", utils.ByteFormat(float64(imageInfo.byteSize), 2))
355-
if cfg.CacheDirectory == "" {
356-
pullSrc = remoteRepo
357-
} else {
358-
localCache, err := oci.NewWithContext(ctx, cfg.CacheDirectory)
359-
if err != nil {
360-
return fmt.Errorf("failed to create oci formatted directory: %w", err)
361-
}
362-
pullSrc = orasCache.New(remoteRepo, localCache)
355+
localCache, err := oci.NewWithContext(ctx, cfg.CacheDirectory)
356+
if err != nil {
357+
return fmt.Errorf("failed to create oci formatted directory: %w", err)
363358
}
359+
pullSrc = orasCache.New(remoteRepo, localCache)
364360
desc, err := oras.Copy(ctx, pullSrc, imageInfo.registryOverrideRef, dst, "", copyOpts)
365361
if err != nil {
366362
return fmt.Errorf("failed to copy: %w", err)

0 commit comments

Comments
 (0)