From a031b83a09a8628435317a03f199cdc18b78262f Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Wed, 1 Nov 2017 11:24:59 -0400 Subject: Initial checkin from CRI-O repo Signed-off-by: Matthew Heon --- server/container_updateruntimeconfig.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 server/container_updateruntimeconfig.go (limited to 'server/container_updateruntimeconfig.go') diff --git a/server/container_updateruntimeconfig.go b/server/container_updateruntimeconfig.go new file mode 100644 index 000000000..b900c9b18 --- /dev/null +++ b/server/container_updateruntimeconfig.go @@ -0,0 +1,11 @@ +package server + +import ( + "golang.org/x/net/context" + pb "k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime" +) + +// UpdateRuntimeConfig updates the configuration of a running container. +func (s *Server) UpdateRuntimeConfig(ctx context.Context, req *pb.UpdateRuntimeConfigRequest) (*pb.UpdateRuntimeConfigResponse, error) { + return &pb.UpdateRuntimeConfigResponse{}, nil +} -- cgit v1.2.3-54-g00ecf