You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the first time for me to use this library, so I might be doing something wrong too.
Thanks in advance.
Update:
As an update, I have tried to use the DigitalOcean HTTP API itself to delete the resource. I could delete it without any problem with the API. I have used the same parameters I'm sending to the delete_repository_manifest(), so it's definitely a bug.
The text was updated successfully, but these errors were encountered:
After investigating further, we have found that when calling: client.registry.delete_repository_manifest(registry_name="cgtest-12345", repository_name="getting-started", manifest_digest="sha256:123456")
the : in the manifest_digest arg is being url escaped to %3A: sha256%3A123456
Currently, the API endpoint does not support URL Encoding. We believe it should. We have created a ticket for our internal Container Registry Development team to add this support. We will close this issue once that support is added.
Thank you so much for bringing this to our attention.
Hello community!
I'm using PyDO for cleaning a Container Registry in DigitalOcean so we fit under our plan without spending extra credits.
When trying to delete an image from its manifest with the
delete_repository_manifest()
method, I'm getting the following error:I have checked the digest hash value and it's the same I'm trying to delete. According to the API docs:
This is the first time for me to use this library, so I might be doing something wrong too.
Thanks in advance.
Update:
As an update, I have tried to use the DigitalOcean HTTP API itself to delete the resource. I could delete it without any problem with the API. I have used the same parameters I'm sending to the
delete_repository_manifest()
, so it's definitely a bug.The text was updated successfully, but these errors were encountered: