0


k8s中 docker和containerd 镜像相互导入导出

  • containerd镜像导出并导入docker

1 查看containerd 本地镜像列表

crictl images 

2 containerd 导出本地镜像到当前目录下(**注意: 导出导入需要指定镜像平台类型 ****--platform**)

ctr -n k8s.io images export nacos-server-24-06-30-13-02-02.tar  docker.io/nacos/nacos-server:v2.1.2  --platform linux/amd64

3 将当前目录下tar 复制到远程docker主机下

scp nacos-server-24-06-30-13-02-02.tar [email protected]:~ 

4 docker 加载tar镜像包

docker load -i nacos-server-24-06-30-13-02-02.tar 

  • docker 镜像导出并导入containerd

1 docker保存镜像为tar文件

docker save alpine:3.15 > alpine-3.15.tar

2 上传镜像到需要的节点, (这里直接本机操作,跳过)

scp alpine-3.15.tar [email protected]:~

3 将tar导入到containerd镜像中(**注意: 导出导入需要指定镜像平台类型 ****--platform,不然会出问题。**)

ctr -n k8s.io images import alpine-3.15.tar --platform linux/amd64

4 检查containerd 本地镜像

[root@master ~]# crictl images
IMAGE                                                             TAG                 IMAGE ID            SIZE
...
docker.io/library/alpine                                          3.15                c059bfaa849c4       5.87MB
...
标签: docker linux 运维

本文转载自: https://blog.csdn.net/xiaogg3678/article/details/139830292
版权归原作者 xiaogg3678 所有, 如有侵权,请联系我们删除。

“k8s中 docker和containerd 镜像相互导入导出”的评论:

还没有评论