2016-11-22 16:49:54 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
pb "k8s.io/kubernetes/pkg/kubelet/api/v1alpha1/runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
// UpdateRuntimeConfig updates the configuration of a running container.
|
|
|
|
func (s *Server) UpdateRuntimeConfig(ctx context.Context, req *pb.UpdateRuntimeConfigRequest) (*pb.UpdateRuntimeConfigResponse, error) {
|
2016-12-15 13:31:42 +00:00
|
|
|
return &pb.UpdateRuntimeConfigResponse{}, nil
|
2016-11-22 16:49:54 +00:00
|
|
|
}
|