本文作者:丁辉
清理镜像仓库
开启镜像删除功能, 修改镜像仓库容器添加变量
1
2
3
4spec:
env:
- name: REGISTRY_STORAGE_DELETE_ENABLED
value: "true"查看镜像
1
curl -u <用户>:<密码> http://<registry-url>/v2/_catalog
查看镜像标签
1
curl -u <用户>:<密码> -X GET http://<registry-url>/v2/<image-name>/tags/list
删除
1
2curl -I -XGET --header "Accept:application/vnd.docker.distribution.manifest.v2+json" \
-u <用户>:<密码> http://<registry-url>/v2/<IMAGE_NAME>/manifests/<TAG>或
1
curl -I -XDELETE -u <用户>:<密码> http://<registry-url>/v2/<IMAGE_NAME>/manifests/<TAG>
I'm so cute. Please give me money.
- 本文链接: https://blog.offends.cn/Kubernetes/镜像仓库/Registry/清理镜像仓库.html
- 版权声明: 本博客所有文章除特别声明外,均默认采用 CC BY-NC-SA 4.0 许可协议。