Skip to content

monetate/ectou-export

Repository files navigation

ectou-export

This project enables running an Amazon Linux AMI on a local VirtualBox or VMWare virtual machine via Vagrant.

Goal

Preserve all the benefits of using the Amazon Linux AMI in production while minimizing differences between EC2 and local development environments.

Usage

Examples:

./export.py --ami-name amzn-ami-hvm-2014.09.2.x86_64-gp2 [--vpc-name name] [--yum-proxy url]
./export.py --ami-name amzn-ami-hvm-2015.03.1.x86_64-gp2 [--vpc-name name] [--yum-proxy url]
./export.py --ami-name amzn-ami-hvm-2015.09.1.x86_64-gp2 [--vpc-name name] [--yum-proxy url]
./export.py --ami-name amzn-ami-hvm-2016.03.3.x86_64-gp2 [--vpc-name name] [--yum-proxy url]

These examples export vagrant box files named AMI_NAME-DATETIME-virtualbox.box and AMI_NAME-DATETIME-virtualbox-guest.box or AMI_NAME-DATETIME-vmware.box and AMI_NAME-DATETIME-vmware-guest.box. To build VMWare boxes, use the option --provider=vmware. You must have VMWare Fusion Pro and the vagrant-vmware plugin installed for VMWare to work. To build VirtualBox boxes, use the option --provider=virtualbox (or leave it off as it is the default).

Overview

The export.py script will:

launch builder instance
    attach source image volume
    export-vmdk.sh (device -> vmdk)
        chroot - remove aws dependencies
        chroot - add vagrant user
        create vmdk
download vmdk

package-[virtualbox/vmware]-box.sh (vmdk -> box)
    create vmware/virtualbox vm
    package vagrant box

install-guest-additions-[virtualbox/vmware].sh (box -> guest box)
    install guest additions
    apply security updates
    package vagrant box

Dependencies

Host software

The software has been tested using:

  • VirtualBox 5.2.X
  • VMWare Fusion Pro 10.1.X
  • Vagrant VMware plugin
  • Vagrant 2.1.1
  • Python 2.7
    • boto3 1.2.3
    • paramiko 1.16.0
    • scp 0.10.2

Example on MacOS X host using brew:

brew tap caskroom/cask
brew install brew-cask
brew cask install virtualbox
brew cask install vagrant

pip install -r requirements.txt

AWS account and credentials

AWS account should have default VPC or explicit VPC. Requires AWS credentials with permissions to:

{
  "Statement": [{
      "Effect": "Allow",
      "Action" : [
        "ec2:DescribeImages",

        "ec2:CreateKeypair",
        "ec2:DeleteKeypair",

        "ec2:CreateSecurityGroup",
        "ec2:AuthorizeSecurityGroupIngress",
        "ec2:DeleteSecurityGroup",

        "ec2:CreateVolume",
        "ec2:AttachVolume",
        "ec2:DetachVolume",
        "ec2:DeleteVolume",

        "ec2:RunInstances",
        "ec2:DescribeInstances",
        "ec2:ModifyInstanceAttribute"
        "ec2:TerminateInstances",

        "ec2:CreateTags",
      ],
      "Resource" : "*"
  }]
}

Access to Amazon repositories

note::

Since the release of the Amazon Linux Container Image, the repositories are public. The yum proxy or VPN is no longer required.

The repository urls are only accessible from within the AWS environment. To access these repositories locally there are several options:

  1. Use VPN connection to EC2, such as OpenVPN Access Server with Viscosity client, and route S3 prefixes over the VPN. See aws ec2 describe-prefix-lists.
  2. Launch HTTP proxy in EC2 with security group restricted to your IP addresses, and configure image --yum-proxy.

About

This project enables running an Amazon Linux AMI on a local VirtualBox virtual machine via Vagrant.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published