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"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Exec prepares a streaming endpoint to execute a command in the container.
|
|
|
|
func (s *Server) Exec(ctx context.Context, req *pb.ExecRequest) (*pb.ExecResponse, error) {
|
2017-04-06 14:37:11 +00:00
|
|
|
return &pb.ExecResponse{}, nil
|
2016-11-22 16:49:54 +00:00
|
|
|
}
|