ZBLOG

[root@k8s-master01 ~]# kubectl cp -n default -c prometheus-demo prometheus-demo-6dc7ddfc4b-ms72d:/opt/test.dump . tar: removing leading '/' from member names error: open .: is a directory 正常该怎么写

根据错误提示,可以看出是因为目标路径 . 是一个目录而不是文件导致的。

如果你希望将容器中的 /opt/test.dump 文件拷贝到当前目录下,并且使用文件名 test.dump,可以这样写:

kubectl cp -n default -c prometheus-demo prometheus-demo-6dc7ddfc4b-ms72d:/opt/test.dump ./test.dump

如果你想要将容器中的 /opt/test.dump 文件夹拷贝到当前目录下,可以先新建一个空目录 test,然后将其作为目标路径:

mkdir test
kubectl cp -n default -c prometheus-demo prometheus-demo-6dc7ddfc4b-ms72d:/opt/test.dump test/

注意,在这种情况下,会将 test.dump 文件或者 test 文件夹(取决于你的操作)复制到当前目录下的 test 目录中。

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:https://golang.0voice.com/?id=807

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?