correct kubectl cp argument order

This commit is contained in:
Naoki Oketani 2019-07-06 00:11:56 +09:00
parent 915be28b61
commit bf431d457c

View File

@ -44,7 +44,7 @@ Copy a remote file from a Pod to a local file.
{% sample lang="yaml" %} {% sample lang="yaml" %}
```bash ```bash
kubectl cp /tmp/foo <some-pod>:/tmp/bar kubectl cp <some-pod>:/tmp/foo /tmp/bar
``` ```
{% endmethod %} {% endmethod %}