Commit f4605ad8 authored by Achilleas Pipinellis's avatar Achilleas Pipinellis

Merge branch 'docs-update-container-registry-api' into 'master'

Update Docs for Container Registry API Delete Endpoints

See merge request gitlab-org/gitlab-ce!29709
parents e0125d7b d29ba165
...@@ -145,6 +145,9 @@ DELETE /projects/:id/registry/repositories/:repository_id/tags/:tag_name ...@@ -145,6 +145,9 @@ DELETE /projects/:id/registry/repositories/:repository_id/tags/:tag_name
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/registry/repositories/2/tags/v10.0.0" curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/registry/repositories/2/tags/v10.0.0"
``` ```
This action does not delete blobs. In order to delete them and recycle disk space,
[run the garbage collection](https://docs.gitlab.com/omnibus/maintenance/README.html#removing-unused-layers-not-referenced-by-manifests).
## Delete repository tags in bulk ## Delete repository tags in bulk
Delete repository tags in bulk based on given criteria. Delete repository tags in bulk based on given criteria.
...@@ -174,6 +177,8 @@ This API call performs the following operations: ...@@ -174,6 +177,8 @@ This API call performs the following operations:
These operations are executed asynchronously and it might These operations are executed asynchronously and it might
take time to get executed. You can run this at most take time to get executed. You can run this at most
once an hour for a given container repository. once an hour for a given container repository.
This action does not delete blobs. In order to delete them and recycle disk space,
[run the garbage collection](https://docs.gitlab.com/omnibus/maintenance/README.html#removing-unused-layers-not-referenced-by-manifests).
NOTE: **Note:** NOTE: **Note:**
Due to a [Docker Distribution deficiency](https://gitlab.com/gitlab-org/gitlab-ce/issues/21405), Due to a [Docker Distribution deficiency](https://gitlab.com/gitlab-org/gitlab-ce/issues/21405),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment