Last active
December 5, 2018 23:11
-
-
Save alanivey/cd199758a759267c98fe to your computer and use it in GitHub Desktop.
CentOS-7-GenericCloud-to-AMI.sh
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
#!/bin/bash | |
# Exit immediately upon a non-zero status | |
set -e | |
############################################################################### | |
# Pre-reqs: | |
# - Create service role 'vimport': | |
# http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/VMImportPrerequisites.html#vmimport-service-role | |
# - Create policy 'vmimport' with the desired S3 bucket: | |
# http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/VMImportPrerequisites.html#vmimport-iam-permissions | |
# - Create IAM user, attach policy 'vmimport' | |
# - IAM user needs a new inline policy with "ec2:CopyImage", "ec2:DeleteSnapshot", | |
# "ec2:DeregisterImage", and "ec2:DescribeImages" via the following JSON: | |
# {"Version":"2012-10-17","Statement":[{"Effect":"Allow","Action":["ec2:CopyImage","ec2:DeleteSnapshot","ec2:DeregisterImage","ec2:DescribeImages"],"Resource":"*"}]} | |
# - Create S3 bucket referenced in IAM policies | |
# - Create API keys for use with `aws` commands below | |
# - Grab CentOS URL and file name from http://cloud.centos.org/centos/7/images/ | |
# and enter below | |
# - Change any other variables as desired below | |
############################################################################### | |
# API keys for IAM user with attached policy 'vmimport' | |
export AWS_ACCESS_KEY_ID='A..................Z' | |
export AWS_SECRET_ACCESS_KEY='secret...................key' | |
# Set this to the bucket you'll be using | |
S3_BUCKET='bucket-name' | |
# Working region- you can copy the AMI to other regions later | |
export AWS_DEFAULT_REGION='us-east-1' | |
# CentOS 7 raw archive URL | |
C7_RAW_URL="http://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud-1601.raw.tar.gz" | |
# CentOS 7 raw filename | |
C7_RAW_FILENAME="CentOS-7-x86_64-GenericCloud-20160129_01.raw" | |
# AMI Name | |
AMI_NAME="CentOS Linux 7 x86_64 HVM EBS 20160129_01" | |
# AMI Description | |
AMI_DESC="Imported from $C7_RAW_URL without modification" | |
# Download file | |
curl \ | |
--remote-name \ | |
"$C7_RAW_URL" | |
# Extract raw file, remove 4 unnecessary folder names in archive | |
tar \ | |
--file="$( basename $C7_RAW_URL )" \ | |
--gunzip \ | |
--extract \ | |
--verbose \ | |
--strip-components=4 | |
# Remove tar.gz archive | |
if [[ -f $C7_RAW_FILENAME ]]; then | |
rm -v "$( basename $C7_RAW_URL )" | |
fi | |
# Create bucket if it doesn't exist | |
aws \ | |
s3api \ | |
head-bucket \ | |
--bucket "$S3_BUCKET" 2>/dev/null \ | |
|| \ | |
aws \ | |
s3api \ | |
create-bucket \ | |
--bucket "$S3_BUCKET" \ | |
--query "Location" --output text | |
# copy file to s3 bucket | |
aws \ | |
s3 \ | |
cp \ | |
"$C7_RAW_FILENAME" \ | |
"s3://${S3_BUCKET}/${C7_RAW_FILENAME}" | |
# Create AMI from raw file | |
ImportTaskIdImage=$( | |
aws \ | |
ec2 \ | |
import-image \ | |
--architecture "x86_64" \ | |
--platform "Linux" \ | |
--role-name "vmimport" \ | |
--disk-containers "UserBucket={S3Bucket=${S3_BUCKET},S3Key=${C7_RAW_FILENAME}}" \ | |
--query "ImportTaskId" --output text | |
) | |
# Check status | |
aws ec2 describe-import-image-tasks --import-task-ids "$ImportTaskIdImage" | |
# Wait until completed | |
ImportTaskIdImageStatus="" | |
until [[ $ImportTaskIdImageStatus == "completed" ]]; do | |
sleep 3 | |
echo -n "." | |
ImportTaskIdImageStatus=$( | |
aws \ | |
ec2 \ | |
describe-import-image-tasks \ | |
--import-task-ids "$ImportTaskIdImage" \ | |
--query "ImportImageTasks[0].Status" --output text | |
) | |
done | |
echo | |
# Delete source file in S3 | |
aws \ | |
s3 \ | |
rm \ | |
"s3://${S3_BUCKET}/${C7_RAW_FILENAME}" | |
# Get AMI once completed | |
ImportedAmi=$( | |
aws \ | |
ec2 \ | |
describe-import-image-tasks \ | |
--import-task-ids "$ImportTaskIdImage" \ | |
--query "ImportImageTasks[0].ImageId" --output text | |
) | |
# Get the imported Snapshot ID | |
ImportedSnapshotId=$( | |
aws \ | |
ec2 \ | |
describe-import-image-tasks \ | |
--import-task-ids "$ImportTaskIdImage" \ | |
--query "ImportImageTasks[0].SnapshotDetails[0].SnapshotId" --output text | |
) | |
# Tag imported AMI and associated snapshot, potentially useful in Cost Reports | |
aws \ | |
ec2 \ | |
create-tags \ | |
--resources "$ImportedAmi" \ | |
--tags "Key=Name,Value='${AMI_NAME} - Imported'" | |
aws \ | |
ec2 \ | |
create-tags \ | |
--resources "$ImportedSnapshotId" \ | |
--tags "Key=Name,Value='${AMI_NAME} - Imported - Snapshot'" | |
# Use `aws ec2 copy-image` to add Name and Description | |
CopiedAmi=$( | |
aws \ | |
ec2 \ | |
copy-image \ | |
--source-region "us-east-1" \ | |
--source-image-id "$ImportedAmi" \ | |
--region="us-east-1" \ | |
--name "$AMI_NAME" \ | |
--description "$AMI_DESC" \ | |
--no-encrypted \ | |
--query "ImageId" \ | |
--output text | |
) | |
# Check status | |
aws ec2 describe-images --image-ids "$CopiedAmi" | |
# Wait for AMI to be available | |
CopiedAmiStatus="" | |
until [[ $CopiedAmiStatus == "available" ]]; do | |
sleep 3 | |
echo -n "." | |
CopiedAmiStatus=$( | |
aws \ | |
ec2 \ | |
describe-images \ | |
--image-ids "$CopiedAmi" \ | |
--query "Images[0].State" --output text | |
) | |
done | |
echo | |
# Get the copied Snapshot ID | |
CopiedSnapshotId=$( | |
aws \ | |
ec2 \ | |
describe-images \ | |
--image-ids "$CopiedAmi" \ | |
--query "Images[0].BlockDeviceMappings[0].Ebs.SnapshotId" --output text | |
) | |
# Tag copied AMI and associated snapshot | |
aws \ | |
ec2 \ | |
create-tags \ | |
--resources "$CopiedAmi" \ | |
--tags "Key=Name,Value='${AMI_NAME}'" | |
aws \ | |
ec2 \ | |
create-tags \ | |
--resources "$CopiedSnapshotId" \ | |
--tags "Key=Name,Value='${AMI_NAME} - Snapshot'" | |
# Deregister imported AMI | |
aws \ | |
ec2 \ | |
deregister-image \ | |
--image-id "$ImportedAmi" | |
# Delete imported snapshot | |
aws \ | |
ec2 \ | |
delete-snapshot \ | |
--snapshot-id "$ImportedSnapshotId" | |
# # Allow another AWS Account ID for the AMI and snapshot | |
# # Requires IAM Permissions "ec2:ModifyImageAttribute" and "ec2:ModifySnapshotAttribute" | |
# aws \ | |
# ec2 \ | |
# modify-image-attribute \ | |
# --image-id "$CopiedAmi" \ | |
# --attribute "launchPermission" \ | |
# --operation-type "add" \ | |
# --user-ids "123456789012" | |
# aws \ | |
# ec2 \ | |
# modify-snapshot-attribute \ | |
# --snapshot-id "$CopiedSnapshotId" \ | |
# --attribute "createVolumePermission" \ | |
# --operation-type "add" \ | |
# --user-ids "123456789012" |
@alanthing an update here and dockerized...
https://github.com/UnivaCorporation/centos-cloud-importer
You can then run this in AWS ECS, Batch, or just on a docker host in AWS with the proper instance profile.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@cryptickp you're welcome! Let me know if you use it in production. Without seeing the C7 kickstart and/or the process they use for uploading to AWS, I'm still a little hesitant to use this for non-testing workloads.