c88bc13b07
Kpod rm removes a container from the system Signed-off-by: Ryan Cole <rcyoalne@gmail.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Signed-off-by: umohnani8 <umohnani@redhat.com>
19 lines
587 B
Go
19 lines
587 B
Go
package server
|
|
|
|
import (
|
|
"github.com/sirupsen/logrus"
|
|
"golang.org/x/net/context"
|
|
pb "k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime"
|
|
)
|
|
|
|
// StopContainer stops a running container with a grace period (i.e., timeout).
|
|
func (s *Server) StopContainer(ctx context.Context, req *pb.StopContainerRequest) (*pb.StopContainerResponse, error) {
|
|
_, err := s.ContainerServer.ContainerStop(req.ContainerId, req.Timeout)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
resp := &pb.StopContainerResponse{}
|
|
logrus.Debugf("StopContainerResponse %s: %+v", req.ContainerId, resp)
|
|
return resp, nil
|
|
}
|