2015-07-29 23:19:09 +00:00
|
|
|
/*
|
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2015-09-27 00:00:39 +00:00
|
|
|
"net/url"
|
2015-07-29 23:19:09 +00:00
|
|
|
|
2015-08-05 22:05:17 +00:00
|
|
|
"github.com/golang/glog"
|
|
|
|
"github.com/spf13/cobra"
|
2016-02-20 18:53:11 +00:00
|
|
|
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2016-02-12 18:58:43 +00:00
|
|
|
"k8s.io/kubernetes/pkg/client/restclient"
|
2015-08-13 19:01:50 +00:00
|
|
|
client "k8s.io/kubernetes/pkg/client/unversioned"
|
|
|
|
"k8s.io/kubernetes/pkg/client/unversioned/remotecommand"
|
2015-08-05 22:03:47 +00:00
|
|
|
cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
|
2016-03-22 13:38:42 +00:00
|
|
|
remotecommandserver "k8s.io/kubernetes/pkg/kubelet/server/remotecommand"
|
2015-11-05 02:39:32 +00:00
|
|
|
utilerrors "k8s.io/kubernetes/pkg/util/errors"
|
2016-02-20 18:53:11 +00:00
|
|
|
"k8s.io/kubernetes/pkg/util/interrupt"
|
|
|
|
"k8s.io/kubernetes/pkg/util/term"
|
2015-07-29 23:19:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2015-09-02 09:56:29 +00:00
|
|
|
attach_example = `# Get output from running pod 123456-7890, using the first container by default
|
2016-02-29 14:41:09 +00:00
|
|
|
kubectl attach 123456-7890
|
2015-08-12 16:50:09 +00:00
|
|
|
|
2015-09-02 09:56:29 +00:00
|
|
|
# Get output from ruby-container from pod 123456-7890
|
2016-02-29 14:41:09 +00:00
|
|
|
kubectl attach 123456-7890 -c ruby-container
|
2015-07-29 23:19:09 +00:00
|
|
|
|
2015-09-28 05:58:31 +00:00
|
|
|
# Switch to raw terminal mode, sends stdin to 'bash' in ruby-container from pod 123456-7890
|
2015-08-12 16:50:09 +00:00
|
|
|
# and sends stdout/stderr from 'bash' back to the client
|
2016-02-29 14:41:09 +00:00
|
|
|
kubectl attach 123456-7890 -c ruby-container -i -t`
|
2015-07-29 23:19:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func NewCmdAttach(f *cmdutil.Factory, cmdIn io.Reader, cmdOut, cmdErr io.Writer) *cobra.Command {
|
|
|
|
options := &AttachOptions{
|
|
|
|
In: cmdIn,
|
|
|
|
Out: cmdOut,
|
|
|
|
Err: cmdErr,
|
|
|
|
|
|
|
|
Attach: &DefaultRemoteAttach{},
|
|
|
|
}
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "attach POD -c CONTAINER",
|
|
|
|
Short: "Attach to a running container.",
|
2015-11-25 10:57:03 +00:00
|
|
|
Long: "Attach to a process that is already running inside an existing container.",
|
2015-07-29 23:19:09 +00:00
|
|
|
Example: attach_example,
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
cmdutil.CheckErr(options.Complete(f, cmd, args))
|
|
|
|
cmdutil.CheckErr(options.Validate())
|
|
|
|
cmdutil.CheckErr(options.Run())
|
|
|
|
},
|
|
|
|
}
|
|
|
|
// TODO support UID
|
2015-09-28 05:58:31 +00:00
|
|
|
cmd.Flags().StringVarP(&options.ContainerName, "container", "c", "", "Container name. If omitted, the first container in the pod will be chosen")
|
2015-07-29 23:19:09 +00:00
|
|
|
cmd.Flags().BoolVarP(&options.Stdin, "stdin", "i", false, "Pass stdin to the container")
|
|
|
|
cmd.Flags().BoolVarP(&options.TTY, "tty", "t", false, "Stdin is a TTY")
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoteAttach defines the interface accepted by the Attach command - provided for test stubbing
|
|
|
|
type RemoteAttach interface {
|
2016-02-12 18:58:43 +00:00
|
|
|
Attach(method string, url *url.URL, config *restclient.Config, stdin io.Reader, stdout, stderr io.Writer, tty bool) error
|
2015-07-29 23:19:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DefaultRemoteAttach is the standard implementation of attaching
|
|
|
|
type DefaultRemoteAttach struct{}
|
|
|
|
|
2016-02-12 18:58:43 +00:00
|
|
|
func (*DefaultRemoteAttach) Attach(method string, url *url.URL, config *restclient.Config, stdin io.Reader, stdout, stderr io.Writer, tty bool) error {
|
2015-09-27 00:00:39 +00:00
|
|
|
exec, err := remotecommand.NewExecutor(config, method, url)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-03-22 13:38:42 +00:00
|
|
|
return exec.Stream(remotecommandserver.SupportedStreamingProtocols, stdin, stdout, stderr, tty)
|
2015-07-29 23:19:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AttachOptions declare the arguments accepted by the Exec command
|
|
|
|
type AttachOptions struct {
|
|
|
|
Namespace string
|
|
|
|
PodName string
|
|
|
|
ContainerName string
|
|
|
|
Stdin bool
|
|
|
|
TTY bool
|
2016-02-20 18:53:11 +00:00
|
|
|
CommandName string
|
|
|
|
|
|
|
|
// InterruptParent, if set, is used to handle interrupts while attached
|
|
|
|
InterruptParent *interrupt.Handler
|
2015-07-29 23:19:09 +00:00
|
|
|
|
|
|
|
In io.Reader
|
|
|
|
Out io.Writer
|
|
|
|
Err io.Writer
|
|
|
|
|
2016-02-20 18:53:11 +00:00
|
|
|
Pod *api.Pod
|
|
|
|
|
2015-07-29 23:19:09 +00:00
|
|
|
Attach RemoteAttach
|
|
|
|
Client *client.Client
|
2016-02-12 18:58:43 +00:00
|
|
|
Config *restclient.Config
|
2015-07-29 23:19:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Complete verifies command line arguments and loads data from the command environment
|
|
|
|
func (p *AttachOptions) Complete(f *cmdutil.Factory, cmd *cobra.Command, argsIn []string) error {
|
|
|
|
if len(argsIn) == 0 {
|
|
|
|
return cmdutil.UsageError(cmd, "POD is required for attach")
|
|
|
|
}
|
|
|
|
if len(argsIn) > 1 {
|
|
|
|
return cmdutil.UsageError(cmd, fmt.Sprintf("expected a single argument: POD, saw %d: %s", len(argsIn), argsIn))
|
|
|
|
}
|
|
|
|
p.PodName = argsIn[0]
|
|
|
|
|
|
|
|
namespace, _, err := f.DefaultNamespace()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
p.Namespace = namespace
|
|
|
|
|
|
|
|
config, err := f.ClientConfig()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
p.Config = config
|
|
|
|
|
|
|
|
client, err := f.Client()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
p.Client = client
|
|
|
|
|
2016-06-13 08:00:39 +00:00
|
|
|
if p.CommandName == "" {
|
|
|
|
p.CommandName = cmd.CommandPath()
|
|
|
|
}
|
|
|
|
|
2015-07-29 23:19:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate checks that the provided attach options are specified.
|
|
|
|
func (p *AttachOptions) Validate() error {
|
2015-11-05 02:39:32 +00:00
|
|
|
allErrs := []error{}
|
2015-07-29 23:19:09 +00:00
|
|
|
if len(p.PodName) == 0 {
|
2015-11-05 02:39:32 +00:00
|
|
|
allErrs = append(allErrs, fmt.Errorf("pod name must be specified"))
|
2015-07-29 23:19:09 +00:00
|
|
|
}
|
|
|
|
if p.Out == nil || p.Err == nil {
|
2015-11-05 02:39:32 +00:00
|
|
|
allErrs = append(allErrs, fmt.Errorf("both output and error output must be provided"))
|
2015-07-29 23:19:09 +00:00
|
|
|
}
|
|
|
|
if p.Attach == nil || p.Client == nil || p.Config == nil {
|
2015-11-05 02:39:32 +00:00
|
|
|
allErrs = append(allErrs, fmt.Errorf("client, client config, and attach must be provided"))
|
2015-07-29 23:19:09 +00:00
|
|
|
}
|
2015-11-05 02:39:32 +00:00
|
|
|
return utilerrors.NewAggregate(allErrs)
|
2015-07-29 23:19:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run executes a validated remote execution against a pod.
|
|
|
|
func (p *AttachOptions) Run() error {
|
2016-02-20 18:53:11 +00:00
|
|
|
if p.Pod == nil {
|
|
|
|
pod, err := p.Client.Pods(p.Namespace).Get(p.PodName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-06-24 12:35:02 +00:00
|
|
|
|
|
|
|
if pod.Status.Phase == api.PodSucceeded || pod.Status.Phase == api.PodFailed {
|
|
|
|
return fmt.Errorf("cannot attach a container in a completed pod; current phase is %s", pod.Status.Phase)
|
2016-02-20 18:53:11 +00:00
|
|
|
}
|
2016-06-24 12:35:02 +00:00
|
|
|
|
2016-02-20 18:53:11 +00:00
|
|
|
p.Pod = pod
|
|
|
|
// TODO: convert this to a clean "wait" behavior
|
2015-07-29 23:19:09 +00:00
|
|
|
}
|
2016-02-20 18:53:11 +00:00
|
|
|
pod := p.Pod
|
2015-07-29 23:19:09 +00:00
|
|
|
|
2016-02-20 18:53:11 +00:00
|
|
|
// ensure we can recover the terminal while attached
|
|
|
|
t := term.TTY{Parent: p.InterruptParent}
|
2015-07-29 23:19:09 +00:00
|
|
|
|
2016-02-20 18:53:11 +00:00
|
|
|
// check for TTY
|
2015-07-29 23:19:09 +00:00
|
|
|
tty := p.TTY
|
2015-10-29 20:32:58 +00:00
|
|
|
containerToAttach := p.GetContainer(pod)
|
|
|
|
if tty && !containerToAttach.TTY {
|
|
|
|
tty = false
|
2016-02-20 18:53:11 +00:00
|
|
|
fmt.Fprintf(p.Err, "Unable to use a TTY - container %s did not allocate one\n", containerToAttach.Name)
|
2015-10-29 20:32:58 +00:00
|
|
|
}
|
2015-07-29 23:19:09 +00:00
|
|
|
if p.Stdin {
|
2016-02-20 18:53:11 +00:00
|
|
|
t.In = p.In
|
|
|
|
if tty && !t.IsTerminal() {
|
|
|
|
tty = false
|
|
|
|
fmt.Fprintln(p.Err, "Unable to use a TTY - input is not a terminal or the right kind of file")
|
2015-07-29 23:19:09 +00:00
|
|
|
}
|
|
|
|
}
|
2016-02-20 18:53:11 +00:00
|
|
|
t.Raw = tty
|
2015-07-29 23:19:09 +00:00
|
|
|
|
2016-02-20 18:53:11 +00:00
|
|
|
fn := func() error {
|
|
|
|
if tty {
|
|
|
|
fmt.Fprintln(p.Out, "\nHit enter for command prompt")
|
|
|
|
}
|
|
|
|
// TODO: consider abstracting into a client invocation or client helper
|
|
|
|
req := p.Client.RESTClient.Post().
|
|
|
|
Resource("pods").
|
|
|
|
Name(pod.Name).
|
|
|
|
Namespace(pod.Namespace).
|
|
|
|
SubResource("attach")
|
|
|
|
req.VersionedParams(&api.PodAttachOptions{
|
|
|
|
Container: containerToAttach.Name,
|
|
|
|
Stdin: p.In != nil,
|
|
|
|
Stdout: p.Out != nil,
|
|
|
|
Stderr: p.Err != nil,
|
|
|
|
TTY: tty,
|
|
|
|
}, api.ParameterCodec)
|
|
|
|
|
|
|
|
return p.Attach.Attach("POST", req.URL(), p.Config, p.In, p.Out, p.Err, tty)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := t.Safe(fn); err != nil {
|
2015-12-10 07:51:07 +00:00
|
|
|
return err
|
|
|
|
}
|
2016-02-20 18:53:11 +00:00
|
|
|
|
2015-12-10 07:51:07 +00:00
|
|
|
if p.Stdin && tty && pod.Spec.RestartPolicy == api.RestartPolicyAlways {
|
2016-02-20 18:53:11 +00:00
|
|
|
fmt.Fprintf(p.Out, "Session ended, resume using '%s %s -c %s -i -t' command when the pod is running\n", p.CommandName, pod.Name, containerToAttach.Name)
|
2015-12-10 07:51:07 +00:00
|
|
|
}
|
|
|
|
return nil
|
2015-07-29 23:19:09 +00:00
|
|
|
}
|
2015-09-29 19:43:15 +00:00
|
|
|
|
2015-10-29 20:32:58 +00:00
|
|
|
// GetContainer returns the container to attach to, with a fallback.
|
|
|
|
func (p *AttachOptions) GetContainer(pod *api.Pod) api.Container {
|
2015-09-29 19:43:15 +00:00
|
|
|
if len(p.ContainerName) > 0 {
|
2015-10-29 20:32:58 +00:00
|
|
|
for _, container := range pod.Spec.Containers {
|
|
|
|
if container.Name == p.ContainerName {
|
|
|
|
return container
|
|
|
|
}
|
|
|
|
}
|
2016-06-24 12:35:02 +00:00
|
|
|
for _, container := range pod.Spec.InitContainers {
|
|
|
|
if container.Name == p.ContainerName {
|
|
|
|
return container
|
|
|
|
}
|
|
|
|
}
|
2015-09-29 19:43:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
glog.V(4).Infof("defaulting container name to %s", pod.Spec.Containers[0].Name)
|
2015-10-29 20:32:58 +00:00
|
|
|
return pod.Spec.Containers[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetContainerName returns the name of the container to attach to, with a fallback.
|
|
|
|
func (p *AttachOptions) GetContainerName(pod *api.Pod) string {
|
|
|
|
return p.GetContainer(pod).Name
|
2015-09-29 19:43:15 +00:00
|
|
|
}
|