github.com/containerd/containerd/api/services/images/v1/images.proto
(syntax: proto3
)
Description:
Images is a service that allows one to register images with containerd.
In containerd, an image is merely the mapping of a name to a content root, described by a descriptor. The behavior and state of image is purely dictated by the type of the descriptor.
From the perspective of this service, these references are mostly shallow, in that the existence of the required content won’t be validated until required by consuming services.
As such, this can really be considered a “metadata service”.
Method | Input Type | Output Type | Description |
Get | GetImageRequest | GetImageResponse |
Get returns an image by name. |
List | ListImagesRequest | ListImagesResponse |
List returns a list of all images known to containerd. |
Create | CreateImageRequest | CreateImageResponse |
Create an image record in the metadata store. The name of the image must be unique. |
Update | UpdateImageRequest | UpdateImageResponse |
Update assigns the name to a given target image based on the provided image. |
Delete | DeleteImageRequest | Empty |
Delete deletes the image by name. |