d6e819133d
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
13 lines
393 B
Go
13 lines
393 B
Go
package server
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"golang.org/x/net/context"
|
|
pb "k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime"
|
|
)
|
|
|
|
// UpdateContainerResources updates ContainerConfig of the container.
|
|
func (s *Server) UpdateContainerResources(ctx context.Context, req *pb.UpdateContainerResourcesRequest) (*pb.UpdateContainerResourcesResponse, error) {
|
|
return nil, fmt.Errorf("not implemented")
|
|
}
|