Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

image-pruner: prune images in their own jobs #19468

Merged
merged 3 commits into from
Jun 22, 2018

Commits on Jun 20, 2018

  1. bump(github.com/gonum/graph): fix node deletion bug

    Bumped to the kube level.
    
    Signed-off-by: Michal Minář <miminar@redhat.com>
    Michal Minář committed Jun 20, 2018
    Configuration menu
    Copy the full SHA
    834be19 View commit details
    Browse the repository at this point in the history
  2. post-bump(gonum/graph): use the new interface

    Signed-off-by: Michal Minář <miminar@redhat.com>
    Michal Minář committed Jun 20, 2018
    Configuration menu
    Copy the full SHA
    de44f64 View commit details
    Browse the repository at this point in the history
  3. image-pruner: prune images in their own jobs

    Instead of pruning in phases:
    
    all streams -> all layers -> all blobs -> manifests -> images
    
    Prune individual images in parallel jobs:
    
    all streams -> parallel [
       image1's layers -> image1's blobs -> ... -> image1,
       image2's layers -> image2's blobs -> ... -> image2,
       ...
    ]
    
    A failure in streams prune phase is not fatal anymore.
    
    Signed-off-by: Michal Minář <miminar@redhat.com>
    Michal Minář committed Jun 20, 2018
    Configuration menu
    Copy the full SHA
    b4dea92 View commit details
    Browse the repository at this point in the history