Get desktop application:
View/edit binary Protocol Buffers messages
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".
Create an image record in the metadata store. The name of the image must be unique.
Delete deletes the image by name.
Sync indicates that the delete and cleanup should be done synchronously before returning to the caller Default is false
Get returns an image by name.
List returns a list of all images known to containerd.
Filters contains one or more filters using the syntax defined in the containerd filter package. The returned result will be those that match any of the provided filters. Expanded, images that match the following will be returned: filters[0] or filters[1] or ... or filters[n-1] or filters[n] If filters is zero-length or nil, all items will be returned.
Update assigns the name to a given target image based on the provided image.
Image provides a full or partial image for update. The name field must be set or an error will be returned.
UpdateMask specifies which fields to perform the update on. If empty, the operation applies to all fields.
Used in: , , , , ,
Name provides a unique name for the image. Containerd treats this as the primary identifier.
Labels provides free form labels for the image. These are runtime only and do not get inherited into the package image in any way. Labels may be updated using the field mask. The combined size of a key/value pair cannot exceed 4096 bytes.
Target describes the content entry point of the image.
CreatedAt is the time the image was first created.
UpdatedAt is the last time the image was mutated.