kubernetes/test/e2e_node/criproxy/proxy_image_service.go

const ListImages

const ImageStatus

const PullImage

const RemoveImage

const ImageFsInfo

// ListImages lists existing images.
func (p *RemoteRuntime) ListImages(ctx context.Context, req *kubeapi.ListImagesRequest) (*kubeapi.ListImagesResponse, error) {}

// ImageStatus returns the status of the image. If the image is not
// present, returns a response with ImageStatusResponse.Image set to
// nil.
func (p *RemoteRuntime) ImageStatus(ctx context.Context, req *kubeapi.ImageStatusRequest) (*kubeapi.ImageStatusResponse, error) {}

// PullImage pulls an image with authentication config.
func (p *RemoteRuntime) PullImage(ctx context.Context, req *kubeapi.PullImageRequest) (*kubeapi.PullImageResponse, error) {}

// RemoveImage removes the image.
// This call is idempotent, and must not return an error if the image has
// already been removed.
func (p *RemoteRuntime) RemoveImage(ctx context.Context, req *kubeapi.RemoveImageRequest) (*kubeapi.RemoveImageResponse, error) {}

// ImageFsInfo returns information of the filesystem that is used to store images.
func (p *RemoteRuntime) ImageFsInfo(ctx context.Context, req *kubeapi.ImageFsInfoRequest) (*kubeapi.ImageFsInfoResponse, error) {}