106 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			106 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright 2017 The Kubernetes Authors.
 | 
						|
 | 
						|
Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
you may not use this file except in compliance with the License.
 | 
						|
You may obtain a copy of the License at
 | 
						|
 | 
						|
    http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
Unless required by applicable law or agreed to in writing, software
 | 
						|
distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
See the License for the specific language governing permissions and
 | 
						|
limitations under the License.
 | 
						|
*/
 | 
						|
 | 
						|
package server
 | 
						|
 | 
						|
import (
 | 
						|
	"encoding/json"
 | 
						|
 | 
						|
	"github.com/pkg/errors"
 | 
						|
	"github.com/sirupsen/logrus"
 | 
						|
	"golang.org/x/net/context"
 | 
						|
	runtime "k8s.io/kubernetes/pkg/kubelet/apis/cri/runtime/v1alpha2"
 | 
						|
 | 
						|
	"github.com/containerd/cri/pkg/store"
 | 
						|
	imagestore "github.com/containerd/cri/pkg/store/image"
 | 
						|
	imagespec "github.com/opencontainers/image-spec/specs-go/v1"
 | 
						|
)
 | 
						|
 | 
						|
// ImageStatus returns the status of the image, returns nil if the image isn't present.
 | 
						|
// TODO(random-liu): We should change CRI to distinguish image id and image spec. (See
 | 
						|
// kubernetes/kubernetes#46255)
 | 
						|
func (c *criService) ImageStatus(ctx context.Context, r *runtime.ImageStatusRequest) (*runtime.ImageStatusResponse, error) {
 | 
						|
	image, err := c.localResolve(r.GetImage().GetImage())
 | 
						|
	if err != nil {
 | 
						|
		if err == store.ErrNotExist {
 | 
						|
			// return empty without error when image not found.
 | 
						|
			return &runtime.ImageStatusResponse{}, nil
 | 
						|
		}
 | 
						|
		return nil, errors.Wrapf(err, "can not resolve %q locally", r.GetImage().GetImage())
 | 
						|
	}
 | 
						|
	// TODO(random-liu): [P0] Make sure corresponding snapshot exists. What if snapshot
 | 
						|
	// doesn't exist?
 | 
						|
 | 
						|
	runtimeImage := toCRIImage(image)
 | 
						|
	info, err := c.toCRIImageInfo(ctx, &image, r.GetVerbose())
 | 
						|
	if err != nil {
 | 
						|
		return nil, errors.Wrap(err, "failed to generate image info")
 | 
						|
	}
 | 
						|
 | 
						|
	return &runtime.ImageStatusResponse{
 | 
						|
		Image: runtimeImage,
 | 
						|
		Info:  info,
 | 
						|
	}, nil
 | 
						|
}
 | 
						|
 | 
						|
// toCRIImage converts internal image object to CRI runtime.Image.
 | 
						|
func toCRIImage(image imagestore.Image) *runtime.Image {
 | 
						|
	repoTags, repoDigests := parseImageReferences(image.References)
 | 
						|
	runtimeImage := &runtime.Image{
 | 
						|
		Id:          image.ID,
 | 
						|
		RepoTags:    repoTags,
 | 
						|
		RepoDigests: repoDigests,
 | 
						|
		Size_:       uint64(image.Size),
 | 
						|
	}
 | 
						|
	uid, username := getUserFromImage(image.ImageSpec.Config.User)
 | 
						|
	if uid != nil {
 | 
						|
		runtimeImage.Uid = &runtime.Int64Value{Value: *uid}
 | 
						|
	}
 | 
						|
	runtimeImage.Username = username
 | 
						|
 | 
						|
	return runtimeImage
 | 
						|
}
 | 
						|
 | 
						|
// TODO (mikebrow): discuss moving this struct and / or constants for info map for some or all of these fields to CRI
 | 
						|
type verboseImageInfo struct {
 | 
						|
	ChainID   string          `json:"chainID"`
 | 
						|
	ImageSpec imagespec.Image `json:"imageSpec"`
 | 
						|
}
 | 
						|
 | 
						|
// toCRIImageInfo converts internal image object information to CRI image status response info map.
 | 
						|
func (c *criService) toCRIImageInfo(ctx context.Context, image *imagestore.Image, verbose bool) (map[string]string, error) {
 | 
						|
	if !verbose {
 | 
						|
		return nil, nil
 | 
						|
	}
 | 
						|
 | 
						|
	info := make(map[string]string)
 | 
						|
 | 
						|
	imi := &verboseImageInfo{
 | 
						|
		ChainID:   image.ChainID,
 | 
						|
		ImageSpec: image.ImageSpec,
 | 
						|
	}
 | 
						|
 | 
						|
	m, err := json.Marshal(imi)
 | 
						|
	if err == nil {
 | 
						|
		info["info"] = string(m)
 | 
						|
	} else {
 | 
						|
		logrus.WithError(err).Errorf("failed to marshal info %v", imi)
 | 
						|
		info["info"] = err.Error()
 | 
						|
	}
 | 
						|
 | 
						|
	return info, nil
 | 
						|
}
 |