cdk-ecrpublic-gc
TypeScript icon, indicating that this package has built-in type declarations

0.1.175 • Public • Published

NPM version PyPI version Release

cdk-ecrpublic-gc

CDK construct library that helps you build a garbage collector to delete all untagged images in Amazon ECR public with AWS CDK.

Why

Amazon ECR public does not have lifecycle policy to clean up all untagged images at this moment(see this issue). cdk-ecrpublic-gc allows you to deploy a AWS Step Functions state machine with dynamic parallelism to invoke an arbitrary of Lambda functions to remove untagged images to release the storage.

Schedule

By default, the state machine will be triggered every 4 hours and can be configured in the schedule property in the TidyUp construct.

Sample

import * as cdk from '@aws-cdk/core';
import { TidyUp } from 'cdk-ecrpublic-gc';

const app = new cdk.App();

const stack = new cdk.Stack(app, 'ecr-public-gc');

new TidyUp(stack, 'TidyUp', {
  repository: [
    'vscode',
    'gitpod-workspace',
    'github-codespace',
  ],
  schedule: events.Schedule.cron({ hour: '*/4', minute: '0' }),
});

In Action

Step Function state machine with dynamic tasks in parallel

Package Sidebar

Install

npm i cdk-ecrpublic-gc

Weekly Downloads

70

Version

0.1.175

License

Apache-2.0

Unpacked Size

787 kB

Total Files

18

Last publish

Collaborators

  • pahud