allow update running/created container.

Signed-off-by: CuiHaozhi <cuihaozhi@chinacloud.com.cn>
This commit is contained in:
CuiHaozhi 2017-11-08 20:15:05 -05:00
parent 56eb473aaa
commit a7f919f071
1 changed files with 7 additions and 0 deletions

View File

@ -1,9 +1,11 @@
package server
import (
"fmt"
"time"
"github.com/gogo/protobuf/proto"
"github.com/kubernetes-incubator/cri-o/oci"
rspec "github.com/opencontainers/runtime-spec/specs-go"
"github.com/sirupsen/logrus"
"golang.org/x/net/context"
@ -23,6 +25,11 @@ func (s *Server) UpdateContainerResources(ctx context.Context, req *pb.UpdateCon
if err != nil {
return nil, err
}
state := s.Runtime().ContainerStatus(c)
if !(state.Status == oci.ContainerStateRunning || state.Status == oci.ContainerStateCreated) {
return nil, fmt.Errorf("container %s is not running or created state: %s", c.ID(), state.Status)
}
resources := toOCIResources(req.GetLinux())
if err := s.Runtime().UpdateContainer(c, resources); err != nil {
return nil, err