7
7
"github.com/spf13/cobra"
8
8
9
9
kubecmd "k8s.io/kubernetes/pkg/kubectl/cmd"
10
- cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
10
+ kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
11
11
12
+ cmdutil "github.com/openshift/origin/pkg/cmd/util"
12
13
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
13
14
)
14
15
@@ -18,12 +19,19 @@ Open a remote shell session to a container
18
19
19
20
This command will attempt to start a shell session in the specified pod. It will default to the
20
21
first container if none is specified, and will attempt to use '/bin/bash' as the default shell.
22
+ You may pass an optional command after the pod name, which will be executed instead of a login
23
+ shell. A TTY will be automatically allocated if standard input is interactive - use -t and -T
24
+ to override.
25
+
21
26
Note, some containers may not include a shell - use '%[1]s exec' if you need to run commands
22
27
directly.`
23
28
24
29
rshExample = `
25
30
// Open a shell session on the first container in pod 'foo'
26
- $ %[1]s rsh foo`
31
+ $ %[1]s rsh foo
32
+
33
+ // Run the command 'cat /etc/resolv.conf' inside pod 'foo'
34
+ $ %[1]s rsh foo cat /etc/resolv.conf`
27
35
)
28
36
29
37
// NewCmdRsh attempts to open a shell session to the server.
@@ -39,29 +47,48 @@ func NewCmdRsh(fullName string, f *clientcmd.Factory, in io.Reader, out, err io.
39
47
Executor : & kubecmd.DefaultRemoteExecutor {},
40
48
}
41
49
executable := "/bin/bash"
50
+ forceTTY , disableTTY := false , false
42
51
43
52
cmd := & cobra.Command {
44
- Use : "rsh POD" ,
53
+ Use : "rsh POD [command] " ,
45
54
Short : "Start a shell session in a pod" ,
46
55
Long : fmt .Sprintf (rshLong , fullName ),
47
56
Example : fmt .Sprintf (rshExample , fullName ),
48
57
Run : func (cmd * cobra.Command , args []string ) {
49
- options .Command = []string {executable }
50
- cmdutil .CheckErr (RunRsh (options , f , cmd , args ))
58
+ switch {
59
+ case forceTTY && disableTTY :
60
+ kcmdutil .CheckErr (kcmdutil .UsageError (cmd , "you may not specify -t and -T together" ))
61
+ case forceTTY :
62
+ options .TTY = true
63
+ case disableTTY :
64
+ options .TTY = false
65
+ default :
66
+ options .TTY = cmdutil .IsTerminal (in )
67
+ }
68
+ if len (args ) < 1 {
69
+ kcmdutil .CheckErr (kcmdutil .UsageError (cmd , "rsh requires a single Pod to connect to" ))
70
+ }
71
+ options .PodName = args [0 ]
72
+ args = args [1 :]
73
+ if len (args ) > 0 {
74
+ options .Command = args
75
+ } else {
76
+ options .Command = []string {executable }
77
+ }
78
+
79
+ kcmdutil .CheckErr (RunRsh (options , f , cmd , args ))
51
80
},
52
81
}
82
+ cmd .Flags ().BoolVarP (& forceTTY , "tty" , "t" , false , "Force a pseudo-terminal to be allocated" )
83
+ cmd .Flags ().BoolVarP (& disableTTY , "no-tty" , "T" , false , "Disable pseudo-terminal allocation" )
53
84
cmd .Flags ().StringVar (& executable , "shell" , executable , "Path to shell command" )
54
85
cmd .Flags ().StringVarP (& options .ContainerName , "container" , "c" , "" , "Container name; defaults to first container" )
86
+ cmd .Flags ().SetInterspersed (false )
55
87
return cmd
56
88
}
57
89
58
90
// RunRsh starts a remote shell session on the server
59
91
func RunRsh (options * kubecmd.ExecOptions , f * clientcmd.Factory , cmd * cobra.Command , args []string ) error {
60
- if len (args ) != 1 {
61
- return cmdutil .UsageError (cmd , "rsh requires a single POD to connect to" )
62
- }
63
- options .PodName = args [0 ]
64
-
65
92
_ , client , err := f .Clients ()
66
93
if err != nil {
67
94
return err
0 commit comments