Skip to content

Commit a97b118

Browse files
committed
Make StopContainer RPC idempotent
Similar to container removal, the stop of a container should be a noop if the container has not been found. Found during: kubernetes-sigs/cri-tools#1536 Signed-off-by: Sascha Grunert <[email protected]>
1 parent ea3e1d9 commit a97b118

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

internal/cri/server/container_stop.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,14 @@ func (c *criService) StopContainer(ctx context.Context, r *runtime.StopContainer
4040
// Get container config from container store.
4141
container, err := c.containerStore.Get(r.GetContainerId())
4242
if err != nil {
43-
return nil, fmt.Errorf("an error occurred when try to find container %q: %w", r.GetContainerId(), err)
43+
if !errdefs.IsNotFound(err) {
44+
return nil, fmt.Errorf("an error occurred when try to find container %q: %w", r.GetContainerId(), err)
45+
}
46+
47+
// The StopContainer RPC is idempotent, and must not return an error if
48+
// the container has already been stopped. Ref:
49+
// https://github.com/kubernetes/cri-api/blob/c20fa40/pkg/apis/runtime/v1/api.proto#L67-L68
50+
return &runtime.StopContainerResponse{}, nil
4451
}
4552

4653
if err := c.stopContainer(ctx, container, time.Duration(r.GetTimeout())*time.Second); err != nil {

0 commit comments

Comments
 (0)