@@ -156,7 +156,7 @@ func (r *Runtime) Pull(ctx context.Context, name string, pullPolicy config.PullP
156
156
options .Variant = r .systemContext .VariantChoice
157
157
}
158
158
159
- var pulledImages []string
159
+ var pulledImages []* Image
160
160
161
161
// Dispatch the copy operation.
162
162
switch ref .Transport ().Name () {
@@ -178,12 +178,7 @@ func (r *Runtime) Pull(ctx context.Context, name string, pullPolicy config.PullP
178
178
}
179
179
180
180
localImages := []* Image {}
181
- for _ , iName := range pulledImages {
182
- image , _ , err := r .LookupImage (iName , nil )
183
- if err != nil {
184
- return nil , fmt .Errorf ("locating pulled image %q name in containers storage: %w" , iName , err )
185
- }
186
-
181
+ for _ , image := range pulledImages {
187
182
// Note that we can ignore the 2nd return value here. Some
188
183
// images may ship with "wrong" platform, but we already warn
189
184
// about it. Throwing an error is not (yet) the plan.
@@ -229,7 +224,7 @@ func nameFromAnnotations(annotations map[string]string) string {
229
224
230
225
// copyFromDefault is the default copier for a number of transports. Other
231
226
// transports require some specific dancing, sometimes Yoga.
232
- func (r * Runtime ) copyFromDefault (ctx context.Context , ref types.ImageReference , options * CopyOptions ) ([]string , error ) {
227
+ func (r * Runtime ) copyFromDefault (ctx context.Context , ref types.ImageReference , options * CopyOptions ) ([]* Image , error ) {
233
228
c , err := r .newCopier (options , nil )
234
229
if err != nil {
235
230
return nil , err
@@ -321,7 +316,14 @@ func (r *Runtime) copyFromDefault(ctx context.Context, ref types.ImageReference,
321
316
}
322
317
323
318
_ , err = c .Copy (ctx , ref , destRef )
324
- return []string {imageName }, err
319
+ if err != nil {
320
+ return nil , fmt .Errorf ("unable to perform copy: %w" , err )
321
+ }
322
+ image , _ , err := r .LookupImage (imageName , nil )
323
+ if err != nil {
324
+ return nil , fmt .Errorf ("Unable to lookup image %q: %w" , imageName , err )
325
+ }
326
+ return []* Image {image }, err
325
327
}
326
328
327
329
// storageReferencesFromArchiveReader returns a slice of image references inside the
@@ -368,7 +370,7 @@ func (r *Runtime) storageReferencesReferencesFromArchiveReader(ctx context.Conte
368
370
}
369
371
370
372
// copyFromDockerArchive copies one image from the specified reference.
371
- func (r * Runtime ) copyFromDockerArchive (ctx context.Context , ref types.ImageReference , options * CopyOptions ) ([]string , error ) {
373
+ func (r * Runtime ) copyFromDockerArchive (ctx context.Context , ref types.ImageReference , options * CopyOptions ) ([]* Image , error ) {
372
374
// There may be more than one image inside the docker archive, so we
373
375
// need a quick glimpse inside.
374
376
reader , readerRef , err := dockerArchiveTransport .NewReaderForReference (& r .systemContext , ref )
@@ -385,7 +387,7 @@ func (r *Runtime) copyFromDockerArchive(ctx context.Context, ref types.ImageRefe
385
387
}
386
388
387
389
// copyFromDockerArchiveReaderReference copies the specified readerRef from reader.
388
- func (r * Runtime ) copyFromDockerArchiveReaderReference (ctx context.Context , reader * dockerArchiveTransport.Reader , readerRef types.ImageReference , options * CopyOptions ) ([]string , error ) {
390
+ func (r * Runtime ) copyFromDockerArchiveReaderReference (ctx context.Context , reader * dockerArchiveTransport.Reader , readerRef types.ImageReference , options * CopyOptions ) ([]* Image , error ) {
389
391
c , err := r .newCopier (options , nil )
390
392
if err != nil {
391
393
return nil , err
@@ -405,15 +407,23 @@ func (r *Runtime) copyFromDockerArchiveReaderReference(ctx context.Context, read
405
407
}
406
408
}
407
409
408
- return destNames , nil
410
+ images := []* Image {}
411
+ for _ , name := range destNames {
412
+ image , _ , err := r .LookupImage (name , nil )
413
+ if err != nil {
414
+ return nil , fmt .Errorf ("Unable to lookup image %q: %w" , name , err )
415
+ }
416
+ images = append (images , image )
417
+ }
418
+
419
+ return images , nil
409
420
}
410
421
411
422
// copyFromRegistry pulls the specified, possibly unqualified, name from a
412
- // registry. On successful pull it returns the ID of the image in local
413
- // storage.
423
+ // registry. On successful pull it returns the image in local storage.
414
424
//
415
425
// If options.All is set, all tags from the specified registry will be pulled.
416
- func (r * Runtime ) copyFromRegistry (ctx context.Context , ref types.ImageReference , inputName string , pullPolicy config.PullPolicy , options * PullOptions ) ([]string , error ) {
426
+ func (r * Runtime ) copyFromRegistry (ctx context.Context , ref types.ImageReference , inputName string , pullPolicy config.PullPolicy , options * PullOptions ) ([]* Image , error ) {
417
427
// Sanity check.
418
428
if err := pullPolicy .Validate (); err != nil {
419
429
return nil , err
@@ -424,7 +434,7 @@ func (r *Runtime) copyFromRegistry(ctx context.Context, ref types.ImageReference
424
434
if err != nil {
425
435
return nil , err
426
436
}
427
- return []string {pulled }, nil
437
+ return []* Image {pulled }, nil
428
438
}
429
439
430
440
// Copy all tags
@@ -434,7 +444,7 @@ func (r *Runtime) copyFromRegistry(ctx context.Context, ref types.ImageReference
434
444
return nil , err
435
445
}
436
446
437
- pulledIDs := []string {}
447
+ pulledImages := []* Image {}
438
448
for _ , tag := range tags {
439
449
select { // Let's be gentle with Podman remote.
440
450
case <- ctx .Done ():
@@ -450,19 +460,18 @@ func (r *Runtime) copyFromRegistry(ctx context.Context, ref types.ImageReference
450
460
if err != nil {
451
461
return nil , err
452
462
}
453
- pulledIDs = append (pulledIDs , pulled )
463
+ pulledImages = append (pulledImages , pulled )
454
464
}
455
465
456
- return pulledIDs , nil
466
+ return pulledImages , nil
457
467
}
458
468
459
469
// copySingleImageFromRegistry pulls the specified, possibly unqualified, name
460
- // from a registry. On successful pull it returns the ID of the image in local
461
- // storage (or, FIXME, a name/ID? that could be resolved in local storage)
462
- func (r * Runtime ) copySingleImageFromRegistry (ctx context.Context , imageName string , pullPolicy config.PullPolicy , options * PullOptions ) (string , error ) { //nolint:gocyclo
470
+ // from a registry. On successful pull it returns the Image from the local storage
471
+ func (r * Runtime ) copySingleImageFromRegistry (ctx context.Context , imageName string , pullPolicy config.PullPolicy , options * PullOptions ) (* Image , error ) { //nolint:gocyclo
463
472
// Sanity check.
464
473
if err := pullPolicy .Validate (); err != nil {
465
- return "" , err
474
+ return nil , err
466
475
}
467
476
468
477
var (
@@ -487,14 +496,7 @@ func (r *Runtime) copySingleImageFromRegistry(ctx context.Context, imageName str
487
496
if options .OS != runtime .GOOS {
488
497
lookupImageOptions .OS = options .OS
489
498
}
490
- // FIXME: We sometimes return resolvedImageName from this function.
491
- // The function documentation says this returns an image ID, resolvedImageName is frequently not an image ID.
492
- //
493
- // Ultimately Runtime.Pull looks up the returned name... again, possibly finding some other match
494
- // than we did.
495
- //
496
- // This should be restructured so that the image we found here is returned to the caller of Pull
497
- // directly, without another image -> name -> image round-trip and possible inconsistency.
499
+
498
500
localImage , resolvedImageName , err = r .LookupImage (imageName , lookupImageOptions )
499
501
if err != nil && ! errors .Is (err , storage .ErrImageUnknown ) {
500
502
logrus .Errorf ("Looking up %s in local storage: %v" , imageName , err )
@@ -525,23 +527,23 @@ func (r *Runtime) copySingleImageFromRegistry(ctx context.Context, imageName str
525
527
if pullPolicy == config .PullPolicyNever {
526
528
if localImage != nil {
527
529
logrus .Debugf ("Pull policy %q and %s resolved to local image %s" , pullPolicy , imageName , resolvedImageName )
528
- return resolvedImageName , nil
530
+ return localImage , nil
529
531
}
530
532
logrus .Debugf ("Pull policy %q but no local image has been found for %s" , pullPolicy , imageName )
531
- return "" , fmt .Errorf ("%s: %w" , imageName , storage .ErrImageUnknown )
533
+ return nil , fmt .Errorf ("%s: %w" , imageName , storage .ErrImageUnknown )
532
534
}
533
535
534
536
if pullPolicy == config .PullPolicyMissing && localImage != nil {
535
- return resolvedImageName , nil
537
+ return localImage , nil
536
538
}
537
539
538
540
// If we looked up the image by ID, we cannot really pull from anywhere.
539
541
if localImage != nil && strings .HasPrefix (localImage .ID (), imageName ) {
540
542
switch pullPolicy {
541
543
case config .PullPolicyAlways :
542
- return "" , fmt .Errorf ("pull policy is always but image has been referred to by ID (%s)" , imageName )
544
+ return nil , fmt .Errorf ("pull policy is always but image has been referred to by ID (%s)" , imageName )
543
545
default :
544
- return resolvedImageName , nil
546
+ return localImage , nil
545
547
}
546
548
}
547
549
@@ -566,9 +568,9 @@ func (r *Runtime) copySingleImageFromRegistry(ctx context.Context, imageName str
566
568
resolved , err := shortnames .Resolve (sys , imageName )
567
569
if err != nil {
568
570
if localImage != nil && pullPolicy == config .PullPolicyNewer {
569
- return resolvedImageName , nil
571
+ return localImage , nil
570
572
}
571
- return "" , err
573
+ return nil , err
572
574
}
573
575
574
576
// NOTE: Below we print the description from the short-name resolution.
@@ -601,7 +603,7 @@ func (r *Runtime) copySingleImageFromRegistry(ctx context.Context, imageName str
601
603
var resolvedReference types.ImageReference
602
604
c , err := r .newCopier (& options .CopyOptions , & resolvedReference )
603
605
if err != nil {
604
- return "" , err
606
+ return nil , err
605
607
}
606
608
defer c .Close ()
607
609
@@ -611,7 +613,7 @@ func (r *Runtime) copySingleImageFromRegistry(ctx context.Context, imageName str
611
613
logrus .Debugf ("Attempting to pull candidate %s for %s" , candidateString , imageName )
612
614
srcRef , err := registryTransport .NewReference (candidate .Value )
613
615
if err != nil {
614
- return "" , err
616
+ return nil , err
615
617
}
616
618
617
619
if pullPolicy == config .PullPolicyNewer && localImage != nil {
@@ -629,15 +631,15 @@ func (r *Runtime) copySingleImageFromRegistry(ctx context.Context, imageName str
629
631
630
632
destRef , err := storageTransport .Transport .ParseStoreReference (r .store , candidate .Value .String ())
631
633
if err != nil {
632
- return "" , err
634
+ return nil , err
633
635
}
634
636
635
637
if err := writeDesc (); err != nil {
636
- return "" , err
638
+ return nil , err
637
639
}
638
640
if options .Writer != nil {
639
641
if _ , err := io .WriteString (options .Writer , fmt .Sprintf ("Trying to pull %s...\n " , candidateString )); err != nil {
640
- return "" , err
642
+ return nil , err
641
643
}
642
644
}
643
645
if _ , err := c .Copy (ctx , srcRef , destRef ); err != nil {
@@ -654,22 +656,26 @@ func (r *Runtime) copySingleImageFromRegistry(ctx context.Context, imageName str
654
656
655
657
logrus .Debugf ("Pulled candidate %s successfully" , candidateString )
656
658
if resolvedReference == nil { // resolvedReference should always be set for storageTransport destinations
657
- return "" , fmt .Errorf ("internal error: After pulling %s, resolvedReference is nil" , candidateString )
659
+ return nil , fmt .Errorf ("internal error: After pulling %s, resolvedReference is nil" , candidateString )
658
660
}
659
661
_ , image , err := storageTransport .ResolveReference (resolvedReference )
660
662
if err != nil {
661
- return "" , fmt .Errorf ("resolving an already-resolved reference %q to the pulled image: %w" , transports .ImageName (resolvedReference ), err )
663
+ return nil , fmt .Errorf ("resolving an already-resolved reference %q to the pulled image: %w" , transports .ImageName (resolvedReference ), err )
662
664
}
663
- return image .ID , nil
665
+ resolvedImage := r .storageToImage (image , resolvedReference )
666
+ // At this point resolvedImage is reference to `name@digest@ID` but
667
+ // let's perform a reload so we only return `@ID` only reference.
668
+ err = resolvedImage .reload ()
669
+ return resolvedImage , err
664
670
}
665
671
666
672
if localImage != nil && pullPolicy == config .PullPolicyNewer {
667
- return resolvedImageName , nil
673
+ return localImage , nil
668
674
}
669
675
670
676
if len (pullErrors ) == 0 {
671
- return "" , fmt .Errorf ("internal error: no image pulled (pull policy %s)" , pullPolicy )
677
+ return nil , fmt .Errorf ("internal error: no image pulled (pull policy %s)" , pullPolicy )
672
678
}
673
679
674
- return "" , resolved .FormatPullErrors (pullErrors )
680
+ return nil , resolved .FormatPullErrors (pullErrors )
675
681
}
0 commit comments