95 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| //go:build linux
 | |
| // +build linux
 | |
| 
 | |
| /*
 | |
|    Copyright The containerd 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 pause
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 
 | |
| 	"github.com/containerd/containerd/pkg/shutdown"
 | |
| 	"github.com/containerd/ttrpc"
 | |
| 	log "github.com/sirupsen/logrus"
 | |
| 
 | |
| 	api "github.com/containerd/containerd/api/runtime/sandbox/v1"
 | |
| 	"github.com/containerd/containerd/plugin"
 | |
| )
 | |
| 
 | |
| func init() {
 | |
| 	plugin.Register(&plugin.Registration{
 | |
| 		Type: plugin.TTRPCPlugin,
 | |
| 		ID:   "pause",
 | |
| 		Requires: []plugin.Type{
 | |
| 			plugin.InternalPlugin,
 | |
| 		},
 | |
| 		InitFn: func(ic *plugin.InitContext) (interface{}, error) {
 | |
| 			ss, err := ic.GetByID(plugin.InternalPlugin, "shutdown")
 | |
| 			if err != nil {
 | |
| 				return nil, err
 | |
| 			}
 | |
| 
 | |
| 			return &pauseService{
 | |
| 				shutdown: ss.(shutdown.Service),
 | |
| 			}, nil
 | |
| 		},
 | |
| 	})
 | |
| }
 | |
| 
 | |
| // pauseService is an extension for task v2 runtime to support Pod "pause" containers via sandbox API.
 | |
| type pauseService struct {
 | |
| 	shutdown shutdown.Service
 | |
| }
 | |
| 
 | |
| var _ api.SandboxService = (*pauseService)(nil)
 | |
| 
 | |
| func (p *pauseService) RegisterTTRPC(server *ttrpc.Server) error {
 | |
| 	api.RegisterSandboxService(server, p)
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (p *pauseService) CreateSandbox(ctx context.Context, req *api.CreateSandboxRequest) (*api.CreateSandboxResponse, error) {
 | |
| 	log.Debugf("create sandbox request: %+v", req)
 | |
| 	return &api.CreateSandboxResponse{}, nil
 | |
| }
 | |
| 
 | |
| func (p *pauseService) StartSandbox(ctx context.Context, req *api.StartSandboxRequest) (*api.StartSandboxResponse, error) {
 | |
| 	log.Debugf("start sandbox request: %+v", req)
 | |
| 	return &api.StartSandboxResponse{}, nil
 | |
| }
 | |
| 
 | |
| func (p *pauseService) StopSandbox(ctx context.Context, req *api.StopSandboxRequest) (*api.StopSandboxResponse, error) {
 | |
| 	log.Debugf("stop sandbox request: %+v", req)
 | |
| 	p.shutdown.Shutdown()
 | |
| 	return &api.StopSandboxResponse{}, nil
 | |
| }
 | |
| 
 | |
| func (p *pauseService) WaitSandbox(ctx context.Context, req *api.WaitSandboxRequest) (*api.WaitSandboxResponse, error) {
 | |
| 	return &api.WaitSandboxResponse{
 | |
| 		ExitStatus: 0,
 | |
| 	}, nil
 | |
| }
 | |
| 
 | |
| func (p *pauseService) SandboxStatus(ctx context.Context, req *api.SandboxStatusRequest) (*api.SandboxStatusResponse, error) {
 | |
| 	log.Debugf("sandbox status request: %+v", req)
 | |
| 	return &api.SandboxStatusResponse{}, nil
 | |
| }
 | |
| 
 | |
| func (p *pauseService) PingSandbox(ctx context.Context, req *api.PingRequest) (*api.PingResponse, error) {
 | |
| 	return &api.PingResponse{}, nil
 | |
| }
 | 
