daemon/containerd: ImageService: remove unused LookupImage()

Looks like this method was not part of the interface, and is not
used anywhere.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2022-07-18 12:22:12 +02:00
parent 7b510fda0c
commit 2527e6dd09
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
1 changed files with 0 additions and 5 deletions

View File

@ -259,11 +259,6 @@ func (cs *ImageService) LoadImage(inTar io.ReadCloser, outStream io.Writer, quie
panic("not implemented")
}
// LookupImage is not implemented.
func (cs *ImageService) LookupImage(ctx context.Context, name string) (*types.ImageInspect, error) {
panic("not implemented")
}
// PushImage initiates a push operation on the repository named localName.
func (cs *ImageService) PushImage(ctx context.Context, image, tag string, metaHeaders map[string][]string, authConfig *types.AuthConfig, outStream io.Writer) error {
panic("not implemented")