correct kubectl cp argument order

Kubernetes-commit: bf431d457c2353f23a358217153b25ff95e34531
This commit is contained in:
Naoki Oketani 2019-07-06 00:11:56 +09:00 committed by Kubernetes Publisher
parent 70c55756d6
commit 4588587bf5
1 changed files with 1 additions and 1 deletions

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 %}