Last active
March 12, 2024 21:25
-
-
Save fabidick22/6a1962697357360f0d73e01950ae962b to your computer and use it in GitHub Desktop.
Migrate AWS ECR images from one account to another in different regions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
MIT License | |
Copyright (c) 2021 fabidick22 | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all | |
copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
SOFTWARE. | |
""" | |
import docker | |
import sys | |
import boto3 as b3 | |
import json | |
ECR_URI = "{}.dkr.ecr.{}.amazonaws.com/{}" | |
TAG_URI = "{}:{}" | |
class Repository: | |
def __init__(self, repository_name: str, region: str, account_id: str, specific_tag=None, profile="default"): | |
self.repository_name = repository_name | |
self.region = region | |
self.account_id = account_id | |
self.specific_tag = specific_tag | |
self.profile = profile | |
def get_uri(self) -> str: | |
base = ECR_URI.format(self.account_id, self.region, self.repository_name) | |
return TAG_URI.format(base, self.specific_tag) if self.specific_tag else base | |
def __str__(self): | |
return json.dumps(self.__dict__) | |
class MigrationECR: | |
def __init__(self, ecr_from: Repository = None, ecr_to: Repository = None, verbose: bool = False,): | |
self.ecr_from = ecr_from | |
self.ecr_to = ecr_to | |
self.client = docker.from_env() | |
self.ta = docker.APIClient | |
self.verbose = verbose | |
@staticmethod | |
def get_images(ecr: Repository, limit=123) -> list: | |
b3.setup_default_session(profile_name=ecr.profile) | |
cli = b3.client("ecr", region_name=ecr.region) | |
response = cli.list_images(repositoryName=ecr.repository_name, maxResults=limit) | |
if ecr.specific_tag: | |
return list( | |
filter(lambda img: img.get("imageTag", None) == ecr.specific_tag, response.get("imageIds", None))) | |
return response.get("imageIds", None) | |
def push_images(self, ecr: Repository): | |
if ecr.specific_tag: | |
b3.setup_default_session(profile_name=ecr.profile) | |
push_details = self.client.images.push(ecr.get_uri()) | |
if self.verbose: | |
print("PUSH: {}".format(push_details)) | |
else: | |
raise Exception("Tag not found! ({})".format(ecr.specific_tag)) | |
def pull_and_tag(self): | |
try: | |
b3.setup_default_session(profile_name=self.ecr_from.profile) | |
image_from = self.client.images.pull(self.ecr_from.get_uri()) | |
image_from.tag(self.ecr_to.get_uri()) | |
if self.verbose: | |
print("PULL: {}".format(image_from)) | |
except docker.errors.APIError as e: | |
print("""Error: {} \n\nMake sure you are authenticated with AWS ECR: \n$(aws ecr get-login --region REGIN --no-include-email --profile PROFILE) | |
""".format(e)) | |
sys.exit(1) | |
def migrate(self): | |
if self.ecr_from and self.ecr_to: | |
list_images_from = self.get_images(self.ecr_from) | |
for image in list_images_from: | |
print("image to pushed: {}".format(json.dumps(image))) | |
self.ecr_from.specific_tag = image.get("imageTag") | |
self.ecr_to.specific_tag = image.get("imageTag") | |
print("FROM: {}".format(self.ecr_from)) | |
print("TO: {}".format(self.ecr_to)) | |
self.pull_and_tag() | |
self.push_images(self.ecr_to) | |
else: | |
raise Exception("Missing variables: {} or {}".format("ecr_from", "ecr_to")) | |
# for test | |
r1_from = Repository("ecr_repo_name", "us-west-2", "629xxxxxxxx", specific_tag="v1.1", profile="ccc-prod") | |
r2_to = Repository("ecr_repo_name", "us-west-1", "804xxxxxxxxx", specific_tag="v1.1", profile="ccc-uat") | |
migration = MigrationECR(r1_from, r2_to, verbose=True) | |
migration.migrate() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@dealyb99 Done