以语雀文档为准
以镜像名中包含 xuxiaowei 为例去操作
查看 ctr 中 k8s 使用过的镜像 | ctr -n=k8s.io i ls |
---|---|
查看 ctr 中 k8s 使用过的镜像:搜索 | ctr -n=k8s.io i ls | grep xuxiaowei |
查看 ctr 中 k8s 使用过的镜像:搜索:展示镜像ID | ctr -n=k8s.io i ls -q | grep xuxiaowei |
查看 ctr 中 k8s 使用过的镜像:搜索:展示镜像ID:拼接 | ctr -n=k8s.io i ls -q | grep xuxiaowei | xargs |
查看 ctr 中 k8s 使用过的镜像:搜索:展示镜像ID:拼接:删除 | ctr -n=k8s.io i ls -q | grep xuxiaowei | xargs ctr -n=k8s.io i rm |