Merge pull request #79845 from oke-py/fix-args

correct kubectl cp argument order
This commit is contained in:
Kubernetes Prow Robot 2019-07-05 09:38:34 -07:00 committed by GitHub
commit 00cf865762
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
```
{% endmethod %}