Skip to content

Commit 4473328

Browse files
author
ChengyuZhu6
committed
snapshot: get image reference from cri annotations for guest pull
The sandbox image (pause image) name cannot be stored in annotations by containerd, so snapshotter is unable to retrieve it. This means that the source field of `KataVirtualVolume` has to be set to "" to support guest pull in proxy mode now. However, once containerd fixes this bug (containerd/containerd#9419), I think the nydus snapshotter could be able to get the sandbox image name from annotations directly. I recommend that we can support to obtain the image name through "containerd.io/snapshot/cri.image-ref" in snapshotter. If this value is empty, the source should be set to "", otherwise it should be set to the image name. Signed-off-by: ChengyuZhu6 <[email protected]>
1 parent 671c414 commit 4473328

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

snapshot/mount_option.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,11 @@ func (o *snapshotter) mountWithKataVolume(ctx context.Context, id string, overla
151151

152152
func (o *snapshotter) mountWithProxyVolume(rafs rafs.Rafs) ([]string, error) {
153153
options := []string{}
154+
source := rafs.Annotations[label.CRIImageRef]
154155
for k, v := range rafs.Annotations {
155156
options = append(options, fmt.Sprintf("%s=%s", k, v))
156157
}
157-
opt, err := o.prepareKataVirtualVolume(label.NydusProxyMode, "", KataVirtualVolumeImageGuestPullType, "", options, rafs.Annotations)
158+
opt, err := o.prepareKataVirtualVolume(label.NydusProxyMode, source, KataVirtualVolumeImageGuestPullType, "", options, rafs.Annotations)
158159
if err != nil {
159160
return options, errors.Wrapf(err, "failed to prepare KataVirtualVolume")
160161
}

0 commit comments

Comments
 (0)