-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UPSTREAM: 30717: fix oc describe suggestion in oc rsh output #10742
UPSTREAM: 30717: fix oc describe suggestion in oc rsh output #10742
Conversation
e10aeba
to
0ad5e76
Compare
[test] |
LGTM, @juanvallejo make sure you open the upstream PR. @liggitt minor one. |
Will do! |
0ad5e76
to
5c58670
Compare
re[test] |
5c58670
to
7082805
Compare
7082805
to
aa62703
Compare
re[test] |
@fabianofranz PTAL |
LGTM [merge] |
continuous-integration/openshift-jenkins/merge SUCCESS (Image: devenv-rhel7_5179) |
conformance test flaked on #9548 re[test] |
aa62703
to
83f1778
Compare
`oc rsh <podname>` outputs the line `defaulting container name to <podname_top_level_container>, use ' describe po/<podname>' cmd to see all containers in this pod`; however this suggestion is missing the root command (oc, kube, openshift cli ...) before `describe po/<podname>`. This patch adds the root command used to invoke the `rsh` command to this suggestion. `$ openshift cli rsh <podname>` ``` defaulting container name to idling-tcp-echo, use 'openshift cli describe po/<podname>' to see all containers in this pod ```
83f1778
to
601285a
Compare
Evaluated for origin test up to 601285a |
continuous-integration/openshift-jenkins/test Running (https://ci.openshift.redhat.com/jenkins/job/test_pr_origin/10031/) (Base Commit: 66a729c) |
continuous-integration/openshift-jenkins/test SUCCESS |
[merge] |
Evaluated for origin merge up to 601285a |
UPSTREAM PR: kubernetes/kubernetes#30717
oc rsh <podname>
outputs the linedefaulting container name to <podname_top_level_container>, use ' describe po/<podname>' cmd to see all containers in this pod
; however this suggestion is missing the rootcommand (oc, kube, openshift cli ...) before
describe po/<podname>
.This patch adds the root command used to invoke the
rsh
command tothis suggestion.
$ openshift cli rsh <podname>
cc @fabianofranz