Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pkg/daemon/pinned_image_set.go
Original file line number Diff line number Diff line change
Expand Up @@ -763,6 +763,7 @@ func (p *PinnedImageSetManager) prefetchWorker(ctx context.Context) {
task.monitor.Done()
continue
}
klog.Errorf("in prefetchWorker with image: %v and auth: %v", task.image, task.auth)
if err := ensurePullImage(ctx, p.criClient, p.backoff, task.image, task.auth); err != nil {
task.monitor.Error(err)
klog.Warningf("failed to prefetch image %q: %v", task.image, err)
Expand Down Expand Up @@ -1138,6 +1139,9 @@ func (p *PinnedImageSetManager) getImageSize(ctx context.Context, imageName, aut
imageName,
}

klog.Errorf("args: %v", args)
klog.Errorf("authFilePath: %v", authFilePath)

output, err := exec.CommandContext(ctx, "podman", args...).CombinedOutput()
if err != nil && strings.Contains(err.Error(), "manifest unknown") {
return 0, errNotFound
Expand Down