forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rsh.go
166 lines (141 loc) · 5.01 KB
/
rsh.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
package cmd
import (
"fmt"
"io"
"time"
"github.com/spf13/cobra"
kubecmd "k8s.io/kubernetes/pkg/kubectl/cmd"
"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
"k8s.io/kubernetes/pkg/util/term"
"github.com/openshift/origin/pkg/cmd/util"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
)
const (
RshRecommendedName = "rsh"
DefaultShell = "/bin/sh"
)
var (
rshLong = templates.LongDesc(`
Open a remote shell session to a container
This command will attempt to start a shell session in a pod for the specified resource.
It works with pods, deployment configs, deployments, jobs, daemon sets, replication controllers
and replica sets.
Any of the aforementioned resources (apart from pods) will be resolved to a ready pod.
It will default to the first container if none is specified, and will attempt to use
'/bin/sh' as the default shell. You may pass any flags supported by this command before
the resource name, and an optional command after the resource name, which will be executed
instead of a login shell. A TTY will be automatically allocated if standard input is
interactive - use -t and -T to override. A TERM variable is sent to the environment where
the shell (or command) will be executed. By default its value is the same as the TERM
variable from the local environment; if not set, 'xterm' is used.
Note, some containers may not include a shell - use '%[1]s exec' if you need to run commands
directly.`)
rshExample = templates.Examples(`
# Open a shell session on the first container in pod 'foo'
%[1]s foo
# Run the command 'cat /etc/resolv.conf' inside pod 'foo'
%[1]s foo cat /etc/resolv.conf
# See the configuration of your internal registry
%[1]s dc/docker-registry cat config.yml
# Open a shell session on the container named 'index' inside a pod of your job
# %[1]s -c index job/sheduled`)
)
// RshOptions declare the arguments accepted by the Rsh command
type RshOptions struct {
ForceTTY bool
DisableTTY bool
Executable string
Timeout int
*kubecmd.ExecOptions
}
// NewCmdRsh returns a command that attempts to open a shell session to the server.
func NewCmdRsh(name string, parent string, f *clientcmd.Factory, in io.Reader, out, err io.Writer) *cobra.Command {
options := &RshOptions{
ForceTTY: false,
DisableTTY: false,
Timeout: 10,
ExecOptions: &kubecmd.ExecOptions{
StreamOptions: kubecmd.StreamOptions{
In: in,
Out: out,
Err: err,
TTY: true,
Stdin: true,
},
FullCmdName: parent,
Executor: &kubecmd.DefaultRemoteExecutor{},
},
}
cmd := &cobra.Command{
Use: fmt.Sprintf("%s [options] POD [COMMAND]", name),
Short: "Start a shell session in a pod",
Long: fmt.Sprintf(rshLong, parent),
Example: fmt.Sprintf(rshExample, parent+" "+name),
Run: func(cmd *cobra.Command, args []string) {
kcmdutil.CheckErr(options.Complete(f, cmd, args))
kcmdutil.CheckErr(options.Validate())
kcmdutil.CheckErr(options.Run())
},
}
cmd.Flags().BoolVarP(&options.ForceTTY, "tty", "t", false, "Force a pseudo-terminal to be allocated")
cmd.Flags().BoolVarP(&options.DisableTTY, "no-tty", "T", false, "Disable pseudo-terminal allocation")
cmd.Flags().StringVar(&options.Executable, "shell", DefaultShell, "Path to the shell command")
cmd.Flags().IntVar(&options.Timeout, "timeout", 10, "Request timeout for obtaining a pod from the server; defaults to 10 seconds")
cmd.Flags().StringVarP(&options.ContainerName, "container", "c", "", "Container name; defaults to first container")
cmd.Flags().SetInterspersed(false)
return cmd
}
// Complete applies the command environment to RshOptions
func (o *RshOptions) Complete(f *clientcmd.Factory, cmd *cobra.Command, args []string) error {
switch {
case o.ForceTTY && o.DisableTTY:
return kcmdutil.UsageError(cmd, "you may not specify -t and -T together")
case o.ForceTTY:
o.TTY = true
case o.DisableTTY:
o.TTY = false
default:
o.TTY = term.IsTerminal(o.In)
}
if len(args) < 1 {
return kcmdutil.UsageError(cmd, "rsh requires a single Pod to connect to")
}
resource := args[0]
args = args[1:]
if len(args) > 0 {
o.Command = args
} else {
o.Command = []string{o.Executable}
}
namespace, _, err := f.DefaultNamespace()
if err != nil {
return err
}
o.Namespace = namespace
config, err := f.ClientConfig()
if err != nil {
return err
}
o.Config = config
client, err := f.ClientSet()
if err != nil {
return err
}
o.PodClient = client.Core()
o.PodName, err = f.PodForResource(resource, time.Duration(o.Timeout)*time.Second)
return err
}
// Validate ensures that RshOptions are valid
func (o *RshOptions) Validate() error {
return o.ExecOptions.Validate()
}
// Run starts a remote shell session on the server
func (o *RshOptions) Run() error {
// Insert the TERM into the command to be run
if len(o.Command) == 1 && o.Command[0] == DefaultShell {
termsh := fmt.Sprintf("TERM=%q %s", util.Env("TERM", "xterm"), DefaultShell)
o.Command = append(o.Command, "-c", termsh)
}
return o.ExecOptions.Run()
}