Hello, in my company we have a private registry (v2) and we use tags to determine the latest version of running applications. Thus it's possible for an image to have several tags. Is it possible through the API to untag an image without deleting the underlying image. I've searched the API and so far all I found is:
DELETE /v2//manifests/
Which deletes the image and all tags associated with it, while in many cases I just want to remove one tag.
If an API endpoint isn't available can it be added.
thanks