@@ -32,17 +32,20 @@ import (
32
32
)
33
33
34
34
const (
35
- exec_example = `// get output from running 'date' in ruby-container from pod 123456-7890
36
- $ kubectl exec -p 123456-7890 -c ruby-container date
35
+ exec_example = `// get output from running 'date' from pod 123456-7890, using the first container by default
36
+ $ kubectl exec 123456-7890 date
37
+
38
+ // get output from running 'date' in ruby-container from pod 123456-7890
39
+ $ kubectl exec 123456-7890 -c ruby-container date
37
40
38
41
//switch to raw terminal mode, sends stdin to 'bash' in ruby-container from pod 123456-780 and sends stdout/stderr from 'bash' back to the client
39
- $ kubectl exec -p 123456-7890 -c ruby-container -i -t -- bash -il`
42
+ $ kubectl exec 123456-7890 -c ruby-container -i -t -- bash -il`
40
43
)
41
44
42
45
func NewCmdExec (f * cmdutil.Factory , cmdIn io.Reader , cmdOut , cmdErr io.Writer ) * cobra.Command {
43
46
params := & execParams {}
44
47
cmd := & cobra.Command {
45
- Use : "exec -p POD -c CONTAINER -- COMMAND [args...]" ,
48
+ Use : "exec POD -c CONTAINER -- COMMAND [args...]" ,
46
49
Short : "Execute a command in a container." ,
47
50
Long : "Execute a command in a container." ,
48
51
Example : exec_example ,
@@ -52,10 +55,8 @@ func NewCmdExec(f *cmdutil.Factory, cmdIn io.Reader, cmdOut, cmdErr io.Writer) *
52
55
},
53
56
}
54
57
cmd .Flags ().StringVarP (& params .podName , "pod" , "p" , "" , "Pod name" )
55
- cmd .MarkFlagRequired ("pod" )
56
58
// TODO support UID
57
59
cmd .Flags ().StringVarP (& params .containerName , "container" , "c" , "" , "Container name" )
58
- cmd .MarkFlagRequired ("container" )
59
60
cmd .Flags ().BoolVarP (& params .stdin , "stdin" , "i" , false , "Pass stdin to the container" )
60
61
cmd .Flags ().BoolVarP (& params .tty , "tty" , "t" , false , "Stdin is a TTY" )
61
62
return cmd
@@ -79,14 +80,27 @@ type execParams struct {
79
80
tty bool
80
81
}
81
82
82
- func RunExec ( f * cmdutil. Factory , cmd * cobra.Command , cmdIn io. Reader , cmdOut , cmdErr io. Writer , p * execParams , args [] string , re remoteExecutor ) error {
83
- if len (p .podName ) == 0 {
84
- return cmdutil .UsageError (cmd , "POD is required for exec" )
83
+ func extractPodAndContainer ( cmd * cobra.Command , args [] string , p * execParams ) ( podName string , containerName string , err error ) {
84
+ if len (p .podName ) == 0 && len ( args ) == 0 {
85
+ return "" , "" , cmdutil .UsageError (cmd , "POD is required for exec" )
85
86
}
86
-
87
- if len (args ) < 1 {
88
- return cmdutil .UsageError (cmd , "COMMAND is required for exec" )
87
+ if len (p .podName ) != 0 {
88
+ printDeprecationWarning ("exec POD" , "-p POD" )
89
+ podName = p .podName
90
+ if len (args ) < 1 {
91
+ return "" , "" , cmdutil .UsageError (cmd , "COMMAND is required for exec" )
92
+ }
93
+ } else {
94
+ podName = args [0 ]
95
+ if len (args ) < 2 {
96
+ return "" , "" , cmdutil .UsageError (cmd , "COMMAND is required for exec" )
97
+ }
89
98
}
99
+ return podName , p .containerName , nil
100
+ }
101
+
102
+ func RunExec (f * cmdutil.Factory , cmd * cobra.Command , cmdIn io.Reader , cmdOut , cmdErr io.Writer , p * execParams , args []string , re remoteExecutor ) error {
103
+ podName , containerName , err := extractPodAndContainer (cmd , args , p )
90
104
namespace , err := f .DefaultNamespace ()
91
105
if err != nil {
92
106
return err
@@ -97,17 +111,17 @@ func RunExec(f *cmdutil.Factory, cmd *cobra.Command, cmdIn io.Reader, cmdOut, cm
97
111
return err
98
112
}
99
113
100
- pod , err := client .Pods (namespace ).Get (p . podName )
114
+ pod , err := client .Pods (namespace ).Get (podName )
101
115
if err != nil {
102
116
return err
103
117
}
104
118
105
119
if pod .Status .Phase != api .PodRunning {
106
- glog .Fatalf ("Unable to execute command because pod is not running. Current status=%v" , pod .Status .Phase )
120
+ glog .Fatalf ("Unable to execute command because pod %s is not running. Current status=%v" , podName , pod .Status .Phase )
107
121
}
108
122
109
- containerName := p .containerName
110
123
if len (containerName ) == 0 {
124
+ glog .V (4 ).Infof ("defaulting container name to %s" , pod .Spec .Containers [0 ].Name )
111
125
containerName = pod .Spec .Containers [0 ].Name
112
126
}
113
127
0 commit comments