server: split containers actions
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
parent
5c94544fb8
commit
61bb04c87c
14 changed files with 747 additions and 659 deletions
11
server/container_attach.go
Normal file
11
server/container_attach.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
"golang.org/x/net/context"
|
||||
pb "k8s.io/kubernetes/pkg/kubelet/api/v1alpha1/runtime"
|
||||
)
|
||||
|
||||
// Attach prepares a streaming endpoint to attach to a running container.
|
||||
func (s *Server) Attach(ctx context.Context, req *pb.AttachRequest) (*pb.AttachResponse, error) {
|
||||
return nil, nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue