summaryrefslogtreecommitdiff
path: root/server/container_updateruntimeconfig.go
diff options
context:
space:
mode:
Diffstat (limited to 'server/container_updateruntimeconfig.go')
-rw-r--r--server/container_updateruntimeconfig.go11
1 files changed, 11 insertions, 0 deletions
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
+}