-
Notifications
You must be signed in to change notification settings - Fork 40k
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
correct kubectl cp argument order #79845
Conversation
Hi @oke-py. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/assign @apelisse |
/ok-to-test Good catch! |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: apelisse, oke-py The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
For next time, I would suggest that you give a little more context on why it is wrong :-) |
ok, thanks! |
@@ -44,7 +44,7 @@ Copy a remote file from a Pod to a local file. | |||
{% sample lang="yaml" %} | |||
|
|||
```bash | |||
kubectl cp /tmp/foo <some-pod>:/tmp/bar | |||
kubectl cp <some-pod>:/tmp/foo /tmp/bar |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But still a good catch @oke-py ! 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's just a warning of tar comand. Successful replication regardless of whether absolute paths are used or not.But I just suggest to remove the wrong message,which can be misleading.Modifying documents is another solution.
/hold see #79845 (comment) Feel free to unhold if everything is ok 😄 |
Looks like the files are copied, but that it is just a warning. LGTM /hold cancel |
correct kubectl cp argument order Kubernetes-commit: 00cf865
What type of PR is this?
/kind documentation
What this PR does / why we need it:
The argument order of an example is wrong.
https://kubectl.docs.kubernetes.io/pages/container_debugging/copying_container_files.html
Which issue(s) this PR fixes:
NONE
Special notes for your reviewer:
Does this PR introduce a user-facing change?: