b959f8996d
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
19 lines
531 B
Go
19 lines
531 B
Go
package server
|
|
|
|
import (
|
|
"time"
|
|
|
|
"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) (resp *pb.UpdateRuntimeConfigResponse, err error) {
|
|
const operation = "update_runtime_config"
|
|
defer func() {
|
|
recordOperation(operation, time.Now())
|
|
recordError(operation, err)
|
|
}()
|
|
|
|
return &pb.UpdateRuntimeConfigResponse{}, nil
|
|
}
|