@@ -14,11 +14,12 @@ import (
14
14
15
15
// remoteExecutor will execute commands on a given pod/container by using the kube Exec command
16
16
type remoteExecutor struct {
17
- Namespace string
18
- PodName string
19
- ContainerName string
20
- Client kclientset.Interface
21
- Config * restclient.Config
17
+ Namespace string
18
+ PodName string
19
+ ContainerName string
20
+ SuggestedCmdUsage string
21
+ Client kclientset.Interface
22
+ Config * restclient.Config
22
23
}
23
24
24
25
// Ensure it implements the executor interface
@@ -37,10 +38,11 @@ func (e *remoteExecutor) Execute(command []string, in io.Reader, out, errOut io.
37
38
Err : errOut ,
38
39
Stdin : in != nil ,
39
40
},
40
- Executor : & kubecmd.DefaultRemoteExecutor {},
41
- PodClient : e .Client .Core (),
42
- Config : e .Config ,
43
- Command : command ,
41
+ SuggestedCmdUsage : e .SuggestedCmdUsage ,
42
+ Executor : & kubecmd.DefaultRemoteExecutor {},
43
+ PodClient : e .Client .Core (),
44
+ Config : e .Config ,
45
+ Command : command ,
44
46
}
45
47
err := execOptions .Validate ()
46
48
if err != nil {
@@ -66,10 +68,11 @@ func newRemoteExecutor(f *clientcmd.Factory, o *RsyncOptions) (executor, error)
66
68
}
67
69
68
70
return & remoteExecutor {
69
- Namespace : o .Namespace ,
70
- PodName : o .PodName (),
71
- ContainerName : o .ContainerName ,
72
- Config : config ,
73
- Client : client ,
71
+ Namespace : o .Namespace ,
72
+ PodName : o .PodName (),
73
+ ContainerName : o .ContainerName ,
74
+ SuggestedCmdUsage : o .SuggestedCmdUsage ,
75
+ Config : config ,
76
+ Client : client ,
74
77
}, nil
75
78
}
0 commit comments