Skip to content

Gentoo AMI Builder - Amazon Image builder for Gentoo Linux

License

Notifications You must be signed in to change notification settings

ericadowd/gentoo-ami-builder

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gentoo AMI Builder

Features

  • One line command to create bootable Gentoo AMI images.
  • Has all needed block device drivers to boot instance (NVMe etc).
  • Has all needed network drivers to have network after boot (IXGBEVF, ENA etc).
  • Minimalistic, only mandatory packages are installed to get bootable system. System eats just ~50 MB of RAM after boot.
  • Has minimalistic amazon-ec2-init script that could bootstrap hostname and ssh keys.
  • Uses amazon-provided kernel config as basis.
  • Build time is around 30-40 minutes (on 8 cores instance).
  • Highly customizable, open source and free :-)
  • Nice progress reporting with advanced error handling.
  • No other dependencies besides aws cli.
  • Supports HVM virtualization type (PVM is not supported).
  • Supports all types of instances.

Prerequisites

This policy could be used to grant AWS user all needed permissions:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "ec2:RunInstances",
                "ec2:TerminateInstances",
                "ec2:DescribeInstances",
                "ec2:CreateImage",
                "ec2:DeregisterImage",
                "ec2:DescribeImages",
                "ec2:DeleteSnapshot",
                "sts:GetCallerIdentity"
            ],
            "Resource": "*"
        }
    ]
}

Gentoo Profiles

Available Gentoo profiles that could be theoretically used for bootstrap and that are compatible with EC2 hardware as of 2018-08-12 are:

  • [?] amd64-hardened+nomultilib (amd64 arch)
  • [?] amd64-hardened-selinux+nomultilib (amd64 arch)
  • [?] amd64-hardened-selinux (amd64 arch)
  • [?] amd64-hardened (amd64 arch)
  • [?] amd64-nomultilib (amd64 arch)
  • [X] amd64-systemd (amd64 arch)
  • [?] amd64-uclibc-hardened (amd64 arch)
  • [?] amd64-uclibc-vanilla (amd64 arch)
  • [V] amd64 (amd64 arch)
  • [?] x32 (amd64 arch)
  • [X] i486 (x86 arch)
  • [X] i686-hardened (x86 arch)
  • [X] i686-systemd (x86 arch)
  • [X] i686-uclibc-hardened (x86 arch)
  • [X] i686-uclibc-vanilla (x86 arch)
  • [X] i686 (x86 arch)

Icons:

  • [V] - verified, works
  • - verified, doesn't work in current version, but could be fixed
  • [?] - not verified, could work or not

Tested Configurations

  • amd64 / c5.2xlarge (network driver ENA, block device driver NVMe)
  • amd64 / c4.2xlarge (network driver IXGBEVF)
  • amd64 / t2.2xlarge (unlimited cpu credits)

Included Drivers

This script uses kernel config that is used in Amazon Linux instances with some additional fixes:

  • Some instances, like C3, have network only with IXGBEVF driver. Stock config has different name for driver so without fix it won't be enabled by default.
  • Some instances, like C5, have network only with ENA driver. This driver need to be compiled during installation from sources provided by Amazon.
  • Some instances, like C5, have NVMe block devices. NVMe driver need to be compiled into kernel to make sure that Gentoo will load it before mounting the root. There is also a set of scripts to properly detect disk device names because they are different for NVMe devices, /dev/nvmeXnY instead of /dev/xvdX.

Caveats

Sometimes Gentoo server could work really slow, around 200Kb/sec, making whole process much slower. You could terminate AMI builder and restart. New request will be most-likely served from another instance and will be fast. Another option is to change server in settings to the one that you trust.

AMI image creation could be also slow, up to 10-15 minutes usually for 20GB disk.

XEN PVM is not supported but technically could be implemented and it is not too complex. Needs slightly different bootloader and kernel configuration.

x86 architecture is not supported. By the way support could be added. Not sure if somebody needs x86 in cloud these days.

Usage

Run gentoo-ami-builder --help for help.

Usually you just need to configure aws cli and run command below to get working Gentoo AMI image:

gentoo-ami-builder --key-pair "Your Key Pair Name

Customization

Recommendation is to add extra actions needed for target image into phase 3 script.

Examples

Success p1

Success p2

Success p3

Failure

TODOs

  • fix compatibility with x86
  • test and fix issues with systemd profiles
  • customizable user phase passed via command line argument
  • fix all shellcheck issues
  • add debugging section in README
  • fix PVM support
  • test all gentoo profiles, blacklist unsupported
  • submit ena ebuild to gentoo and remove local overlay step
  • better ssh connection wait function (see below)
  • cover by unit tests
 *   Waiting until SSH will be up...
ssh: connect to host 34.200.218.187 port 22: Connection refused

Reporting bugs

Please use the GitHub issue tracker for any bugs or feature suggestions:

https://github.com/sormy/gentoo-ami-builder/issues

Contributing

Please submit patches to code or documentation as GitHub pull requests!

Contributions must be licensed under the MIT.

Copyright

gentoo-ami-builder is licensed under the MIT. A copy of this license is included in the file LICENSE.

About

Gentoo AMI Builder - Amazon Image builder for Gentoo Linux

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 100.0%