Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

aws cdk push image to ecr

I am trying to do something that seems fairly logical and straight forward.

I am using the AWS CDK to provision an ecr repo:

     repository = ecr.Repository(
                            self, 
                            id="Repo", 
                            repository_name=ecr_repo_name,
                            removal_policy=core.RemovalPolicy.DESTROY
                            )

I then have a Dockerfile which lives at the root of my project that I am trying to push to the same ECR repo in the deployment.

I do this in the same service code with:

    assets = DockerImageAsset(
            self, 
            "S3_text_image", 
            directory=str(Path(__file__).parent.parent),
            repository_name=ecr_repo_name
            )

The deployment is fine and goes ahead and the ECR Repo is created, but the image is pushed to a default location aws-cdk/assets

How do I make the deployment send my Dockerfile to the exact ECR repo I want it to live in ?

like image 488
Ben Muller Avatar asked May 04 '21 21:05

Ben Muller


People also ask

How do I push an existing Docker image to ECR?

To push a Docker image to an Amazon ECR repositoryAuthenticate your Docker client to the Amazon ECR registry to which you intend to push your image. Authentication tokens must be obtained for each registry used, and the tokens are valid for 12 hours. For more information, see Private registry authentication.

How do I create Docker images with AWS ECR?

1. Build Docker image locally. 2. Create Repo in AWS ECR. 3. Configure AWS Credentials locally. 4. Tag Docker Image for AWS ECR. 5. Push Docker Image to AWS ECR. 6. Create Docker container using AWS ECR image. I already created a separate article for making Docker images using the NodeJS application.

How do I create an AWS ECR repository?

Create the AWS ECR repository In the AWS console go to the AWS ECR page. Click the “Create repository” button. Then chouse visibility of your repository. I leave it as “private”, so it will be managed by IAM and repository policy permissions and won't be accessible to the public.

How do I identify an image in AWS ECR?

You can identify an image with the repository:tag value or the image ID in the resulting command output. Tag your image with the Amazon ECR registry, repository, and optional image tag name combination to use. The registry format is aws_account_id.dkr.ecr.region.amazonaws.com.

How do I push images to multiple Amazon ECR registries?

A user must authenticate to each Amazon ECR registry they want to push images to by requesting an authorization token. Amazon ECR provides several managed IAM policies to control user access at varying levels; for more information, see Amazon Elastic Container Registry Identity-Based Policy Examples.


1 Answers

AWS CDK depricated the repositoryName property on DockerImageAsset. There are a few issues on GitHub referencing the problem. See this comment from one of the developers:

At the moment the CDK comes with 2 asset systems:

The legacy one (currently still the default), where you get to specify a repositoryName per asset, and the CLI will create and push to whatever ECR repository you name.

The new one (will become the default in the future), where a single ECR repository will be created by doing cdk bootstrap and all images will be pushed into it. The CLI will not create the repository any more, it must already exist. IIRC this was done to limit the permissions required for deployments. @eladb, can you help me remember why we chose to do it this way?

There is a request for a new construct that will allow you to deploy to a custom ECR repository at (aws-ecr-assets) ecr-deployment #12597.

Use Case

I would like to use this feature to completely deploy my local image source code to ECR for me using an ECR repo that I have previously created in my CDK app or more importantly outside the app using an arn. The biggest problem is that the image cannot be completely abstracted into the assets repo because of auditing and semantic versioning.

There is also a third party solution at https://github.com/wchaws/cdk-ecr-deployment if you do not want to wait for the CDK team to implement the new construct.

like image 119
kylevoyto Avatar answered Sep 19 '22 11:09

kylevoyto