AWS limits the number of images per ECR repository to 1000. This is not a problem for low-activity projects, but if you have a full-fledged continuous delivery pipeline in place that pushes images to a repository at every new commit, sooner or later this limit will require you to periodically remove old images in order to create room for new ones.
This controller handles this task of automatically keeping the number of images in a ECR repository under some specified threshold.
First, the controller will query the Kubernetes API server to get the list of currently running pods from the specified namespaces in order to see which ECR images are currently in use.
Then, it will load the contents of the specified ECR repositories, sort those
images by push date, and remove from this list the images currently in use.
This step is very important as it ensures images in use are not accidentally
deleted. Also, this controller will not touch images tagged with the latest
tag.
Finally, it will remove the oldest images from this list.
For the controller to work, it must have access to AWS credentials in
~/.aws/credentials
, or via AWS_ACCESS_KEY_ID
and AWS_SECRET_ACCESS_KEY
environment variables.
The following IAM policy describes which actions the user must be able to perform in order for the controller to work:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ecr:BatchDeleteImage",
"ecr:DescribeRepositories",
"ecr:DescribeImages"
],
"Resource": [
"arn:aws:ecr:us-east-1:<id>:*"
]
}
]
}
Make sure to set the Resources
correctly for all ECR repos you intend to
clean up with this controller.
$ ./kube-ecr-cleanup-controller -h
Usage of ./bin/kube-ecr-cleanup-controller:
-alsologtostderr
log to standard error as well as files
-dry-run
just log, don't delete any images.
-interval int
check interval, in minutes. (default 30)
-keep-filters string
comma-separated list of filters or regexes that when matched will preserve the matching images.
-kubeconfig string
path to a kubeconfig file.
-log_backtrace_at value
when logging hits line file:N, emit a stack trace
-log_dir string
If non-empty, write log files in this directory
-logtostderr
log to standard error instead of files
-max-images int
maximum number of images to keep in each repository. (default 900)
-namespaces string
do not remove images used by pods in this comma-separated list of namespaces. (default "default")
-region string
region to use when talking to AWS. (default "us-east-1")
-registry-id string
specify a registry account ID. If not specified, uses the account ID of the credentials passed.
-repos string
comma-separated list of repository names to watch.
-stderrthreshold value
logs at or above this threshold go to stderr
-v value
log level for V logs
-vmodule value
comma-separated list of pattern=N settings for file-filtered logging
Assuming you have your Go environment already configured:
- Clone this repository in
$GOPATH/src/github.com/danielfm/kube-ecr-cleanup-controller
- Run
make build
to build the Linux binary, ormake image
to build the Docker image - Then, just re-tag the image to
<your-name>/kube-ecr-cleanup-controller:<tag>
and push to your own registry, if you feel like it
Or, you can use a pre-built image hosted in Docker Hub: https://hub.docker.com/r/danielfm/kube-ecr-cleanup-controller/
Also, you can run make test
to run the unit tests (or make cover
, to run the tests with coverage reporting).
If this project is useful for you, buy me a beer!
Bitcoin: bc1qtwyfcj7pssk0krn5wyfaca47caar6nk9yyc4mu
Copyright (C) Daniel Fernandes Martins
Distributed under the New BSD License. See LICENSE for further details.