Skip to content

Commit 3d5e9d5

Browse files
committed
add suggestion to describe pod for container names
1 parent 524bac2 commit 3d5e9d5

File tree

4 files changed

+56
-23
lines changed

4 files changed

+56
-23
lines changed

pkg/oc/cli/cmd/debug.go

+10
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,16 @@ func (o *DebugOptions) Complete(cmd *cobra.Command, f *clientcmd.Factory, args [
263263
o.AsNonRoot = !o.AsRoot && cmd.Flag("as-root").Changed
264264

265265
if len(o.Attach.ContainerName) == 0 && len(pod.Spec.Containers) > 0 {
266+
fullCmdName := ""
267+
cmdParent := cmd.Parent()
268+
if cmdParent != nil {
269+
fullCmdName = cmdParent.CommandPath()
270+
}
271+
272+
if len(fullCmdName) > 0 && kcmdutil.IsSiblingCommandExists(cmd, "describe") {
273+
fmt.Fprintf(o.Attach.Err, "Use '%s describe pod/%s -n %s' to see all of the containers in this pod.\n", fullCmdName, pod.Name, pod.Namespace)
274+
}
275+
266276
glog.V(4).Infof("Defaulting container name to %s", pod.Spec.Containers[0].Name)
267277
o.Attach.ContainerName = pod.Spec.Containers[0].Name
268278
}

pkg/oc/cli/cmd/rsh.go

+9
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,15 @@ func (o *RshOptions) Complete(f *clientcmd.Factory, cmd *cobra.Command, args []s
147147
o.PodClient = client.Core()
148148

149149
o.PodName, err = f.PodForResource(resource, time.Duration(o.Timeout)*time.Second)
150+
151+
fullCmdName := ""
152+
cmdParent := cmd.Parent()
153+
if cmdParent != nil {
154+
fullCmdName = cmdParent.CommandPath()
155+
}
156+
if len(fullCmdName) > 0 && kcmdutil.IsSiblingCommandExists(cmd, "describe") {
157+
o.SuggestedCmdUsage = fmt.Sprintf("Use '%s describe pod/%s -n %s' to see all of the containers in this pod.", fullCmdName, o.PodName, o.Namespace)
158+
}
150159
return err
151160
}
152161

pkg/oc/cli/cmd/rsync/execremote.go

+17-14
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ import (
1414

1515
// remoteExecutor will execute commands on a given pod/container by using the kube Exec command
1616
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
2223
}
2324

2425
// Ensure it implements the executor interface
@@ -37,10 +38,11 @@ func (e *remoteExecutor) Execute(command []string, in io.Reader, out, errOut io.
3738
Err: errOut,
3839
Stdin: in != nil,
3940
},
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,
4446
}
4547
err := execOptions.Validate()
4648
if err != nil {
@@ -66,10 +68,11 @@ func newRemoteExecutor(f *clientcmd.Factory, o *RsyncOptions) (executor, error)
6668
}
6769

6870
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,
7477
}, nil
7578
}

pkg/oc/cli/cmd/rsync/rsync.go

+20-9
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,16 @@ type podChecker interface {
7070

7171
// RsyncOptions holds the options to execute the sync command
7272
type RsyncOptions struct {
73-
Namespace string
74-
ContainerName string
75-
Source *pathSpec
76-
Destination *pathSpec
77-
Strategy copyStrategy
78-
StrategyName string
79-
Quiet bool
80-
Delete bool
81-
Watch bool
73+
Namespace string
74+
ContainerName string
75+
Source *pathSpec
76+
Destination *pathSpec
77+
Strategy copyStrategy
78+
StrategyName string
79+
Quiet bool
80+
Delete bool
81+
Watch bool
82+
SuggestedCmdUsage string
8283

8384
RsyncInclude []string
8485
RsyncExclude []string
@@ -214,6 +215,16 @@ func (o *RsyncOptions) Complete(f *clientcmd.Factory, cmd *cobra.Command, args [
214215
return err
215216
}
216217

218+
fullCmdName := ""
219+
cmdParent := cmd.Parent()
220+
if cmdParent != nil {
221+
fullCmdName = cmdParent.CommandPath()
222+
}
223+
224+
if len(fullCmdName) > 0 && kcmdutil.IsSiblingCommandExists(cmd, "describe") {
225+
o.SuggestedCmdUsage = fmt.Sprintf("Use '%s describe pod/%s -n %s' to see all of the containers in this pod.", fullCmdName, o.PodName(), o.Namespace)
226+
}
227+
217228
o.Strategy, err = o.determineStrategy(f, cmd, o.StrategyName)
218229
if err != nil {
219230
return err

0 commit comments

Comments
 (0)