CRI shim:kubelet怎么与runtime交互(一)

复制// grpcServices are all the grpc services provided by cri containerd.  type grpcServices interface {    runtime.RuntimeServiceServer    runtime.ImageServiceServer  // CRIService is the interface implement CRI remote service server.  type CRIService interface {    Run() error    // io.Closer is used by containerd to gracefully stop cri service.    io.Closer    plugin.Service    grpcServices  1.2.3.4.5.6.7.8.9.10.11.12.13.

THE END