Now that the shim handles all container's processes the system pid is sufficient. Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package main
 | 
						|
 | 
						|
import (
 | 
						|
	gocontext "context"
 | 
						|
	"fmt"
 | 
						|
 | 
						|
	"github.com/docker/containerd/api/execution"
 | 
						|
	"github.com/urfave/cli"
 | 
						|
)
 | 
						|
 | 
						|
var deleteCommand = cli.Command{
 | 
						|
	Name:      "delete",
 | 
						|
	Usage:     "delete a process from containerd store",
 | 
						|
	ArgsUsage: "CONTAINER",
 | 
						|
	Flags: []cli.Flag{
 | 
						|
		cli.StringFlag{
 | 
						|
			Name:  "pid, p",
 | 
						|
			Usage: "process id to be deleted",
 | 
						|
		},
 | 
						|
	},
 | 
						|
	Action: func(context *cli.Context) error {
 | 
						|
		executionService, err := getExecutionService(context)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		id := context.Args().First()
 | 
						|
		if id == "" {
 | 
						|
			return fmt.Errorf("container id must be provided")
 | 
						|
		}
 | 
						|
 | 
						|
		pid := uint32(context.Int64("pid"))
 | 
						|
		if pid != 0 {
 | 
						|
			_, err = executionService.DeleteProcess(gocontext.Background(), &execution.DeleteProcessRequest{
 | 
						|
				ContainerID: id,
 | 
						|
				Pid:         pid,
 | 
						|
			})
 | 
						|
			if err != nil {
 | 
						|
				return err
 | 
						|
			}
 | 
						|
			return nil
 | 
						|
		}
 | 
						|
 | 
						|
		if _, err := executionService.DeleteContainer(gocontext.Background(), &execution.DeleteContainerRequest{
 | 
						|
			ID: id,
 | 
						|
		}); err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
 | 
						|
		return nil
 | 
						|
	},
 | 
						|
}
 |