What is the problem you're trying to solve
Refers to kubernetes/enhancements#4639
Describe the solution you'd like
As far as I know, we need to add mountPoint to Image and return it in CRI.
|
type Image struct { |
|
// Name of the image. |
|
// |
|
// To be pulled, it must be a reference compatible with resolvers. |
|
// |
|
// This field is required. |
|
Name string |
|
|
|
// Labels provide runtime decoration for the image record. |
|
// |
|
// There is no default behavior for how these labels are propagated. They |
|
// only decorate the static metadata object. |
|
// |
|
// This field is optional. |
|
Labels map[string]string |
|
|
|
// Target describes the root content for this image. Typically, this is |
|
// a manifest, index or manifest list. |
|
Target ocispec.Descriptor |
|
|
|
CreatedAt, UpdatedAt time.Time |
|
} |
Additional context
No response
What is the problem you're trying to solve
Refers to kubernetes/enhancements#4639
Describe the solution you'd like
As far as I know, we need to add
mountPointtoImageand return it in CRI.containerd/core/images/image.go
Lines 35 to 56 in 323ba43
Additional context
No response