Code Monkey home page Code Monkey logo

Comments (9)

michaeldz avatar michaeldz commented on July 18, 2024 2

My workaround:

az acr repository show-manifests -n $ACR_NAME --repository $name --query "[?tags==null].digest" -o tsv | while read -r digest; do az acr repository delete -n $ACR_NAME --image $name@$digest --yes; done;

from acr.

sajayantony avatar sajayantony commented on July 18, 2024

You can list all your manifests in a repository. In the following case the first repo was tagged as latest and was overwritten.

 az acr repository show-manifests --repository todelete
[
  {
    "digest": "sha256:8072a54ebb3bc136150e2f2860f00a7bf45f13eeb917cca2430fcd0054c8e51b",
    "tags": [],
    "timestamp": "2017-12-27T18:41:59Z"
  },
  {
    "digest": "sha256:8b68f4c0ad64bf0bc55d1df84ef22b96ccaf9b08182437612ee591d6f7cf4c40",
    "tags": [
      "latest"
    ],
    "timestamp": "2017-12-27T18:44:33Z"
  }
]

from acr.

djyou avatar djyou commented on July 18, 2024

As the error message suggested you can specify either a tag or a manifest digest to delete. In your case you can use

az acr repository delete -n MyRegistry --repository MyRepository --manifest sha256:8072a54ebb3bc136150e2f2860f00a7bf45f13eeb917cca2430fcd0054c8e51b

from acr.

DanielTimLee avatar DanielTimLee commented on July 18, 2024

Thanks, but I may be right wrong title for my question.
I was wondering if there is any way that I can delete all my untagged images at once.
Not by fetching all manifests, and deleting it one by one.

But Thanks for the tip!

from acr.

sajayantony avatar sajayantony commented on July 18, 2024

This is currently not supported and we are considering an Auto purge option but there is no plan as to when we will enable this.

from acr.

sajayantony avatar sajayantony commented on July 18, 2024

Given that ACR is going down an image policy route, this would most likely be implemented as "Auto-purge untagged images"

from acr.

LukeRH avatar LukeRH commented on July 18, 2024

@sajayantony Do you have an estimated date for when the auto purge option will be available?

from acr.

sajayantony avatar sajayantony commented on July 18, 2024

Closing this since this is being implemented right now and will announce at the end of this year.

from acr.

fuglede avatar fuglede commented on July 18, 2024

For anyone else coming across this thread, here are the docs for acr purge, describing how to purge untagged images.

As far as I can tell, the functionality is rather dangerous to use, though, and in all of my runs, it would remove ALL images, not just the untagged ones, even though --untagged was specified; MicrosoftDocs/azure-docs#81172

from acr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.