cri-o/server/container_updateruntimeconfig.go

12 lines
372 B
Go
Raw Normal View History

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) {
return &pb.UpdateRuntimeConfigResponse{}, nil
}