Skip to content

Commit 96ea080

Browse files
chore: rephrasing user feedback
1 parent 04d66ef commit 96ea080

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/image/airgap.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ func PushImagesFromTempRegistry(airgapRootDir string, imageList []string, option
283283
},
284284
}
285285
imageCounter++
286-
fmt.Printf("Pushing image %d/%d\n", imageCounter, totalImages)
286+
fmt.Printf("Pushing application images (%d/%d)\n", imageCounter, totalImages)
287287
if err := pushImage(pushImageOpts); err != nil {
288288
return errors.Wrapf(err, "failed to push image %s", imageID)
289289
}
@@ -761,7 +761,7 @@ func PushEmbeddedClusterArtifacts(airgapBundle string, opts imagetypes.PushEmbed
761761
HTTPClient: opts.HTTPClient,
762762
}
763763

764-
fmt.Printf("Pushing embedded cluster artifact %d/%d\n", i+1, len(artifacts))
764+
fmt.Printf("Pushing embedded cluster artifacts (%d/%d)\n", i+1, len(artifacts))
765765
artifact := fmt.Sprintf("%s:%s", filepath.Join(opts.Registry.Endpoint, opts.Registry.Namespace, repository), opts.Tag)
766766
if err := pushOCIArtifact(pushOCIArtifactOpts); err != nil {
767767
return nil, errors.Wrapf(err, "failed to push oci artifact %s", name)

0 commit comments

Comments
 (0)