blob: b900c9b18c1f70b0a7351fe6f6a89b46583922ec (
plain)
1
2
3
4
5
6
7
8
9
10
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
}
|