tmclaugh / suitcase

Packer based build system for CentOS OS images

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Suitcase

Suitcase is for building OS images using Packer

NOTE: You must alter site.rb to be applicable for your AWS environment

Building

Building images is a multi-step process using Packer. All work is performed on a developers local system.

Setup

The process of building images requires:

Install on OS X

  • Install VirtualBox

  • Install Packer

$ brew install packer
  • install patched ec2-ami-tools
$ brew install files/ec2-ami-tools.rb

Process

Suitcase uses a Rakefile to drive all Packer actions. The commands should be reasonably simple and intuitive. All regularly needed actions can be achieved using the following tasks. The optional image argument is the name can be used to limit tasks to those for a particular image. Without an image argument all images will have the specified action taken. All actions require an os argument (ex. os=CentOS-6.5-x86_64.json) to indicate the os template to be used. A timesstamp argument can optionally be supplied (ex. timestamp=201410031342). The timestamp is used to continue previous builds.

  • rake packer:build[image]
    • Build an image artifact
  • rake packer:upload[image]
    • Upload an image artifact to S3.
    • For EC2 images this does not bundle and register the AMI.
  • rake packer:fake_upload[image]
    • Place upload cookie without actually uploading files to S3. Useful for saving time when testing new AWS images by being able to skip this step and still do registration.
    • ONLY USE THIS FOR FACILITATING TESTING!!!
  • rake packer:register[image]
    • Bundle and upload an image.
    • For EC2 images this is when an image the image is bundled, uploaded, and an AMI is registered.
  • rake packer:all[image]
    • Build and upload images.
  • rake packer:clean[image]
    • Cleans up the artifacts in the workspace.

There are additional tasks available and can be listed using rake -T. These are typically used for developing and testing of new images and Suitcase itself.

Example usage

The following is an example for how to create a new image for all types. Note that the register target is a second step. Registration can be failure prone and it's useful to leave it till the end.

$ rake packer:build os=CentOS-7.0-x86_64
$ rake packer:register os=CentOS-7.0-x86_64

Build and register an AWS HVM image. This will also build a new master image.

$ rake packer:register[awshvm] os=CentOS-7.0-x86_64

Build and register an AWS HVM image from an existing master. This will also build a new master image.

$ rake packer:build[master] os=CentOS-7.0-x86_64
(observe image timestamp from output. ex. 201410031904)
$ rake packer:register[awshvm] os=CentOS-7.0-x86_64 timestamp=201410031904

Cleanup images when finished for build 201410031904.

$ rake packer:clean os=CentOS-7.0-x86_64 timestamp=201410031904

Cleanup a Vagrant image but leave others in place. Possibly to regenerate only a single image again afterwards.

$ rake packer:clean[vagrant] os=CentOS-7.0-x86_64 timestamp=201410031904

Design

This repo provides a framework for building and testing OS images via Packer. Packer aims to be a reliable way to create similar images for a variety of platforms through JSON based configuration files that define a build. However it's process for building instance backed AWS paravirt images requires the use of an existing AWS instance backed AMI and violates constraints we have always maintained. We have traditionally created our AMIs completely from scratch so that we retain full control and knowledge of the build process and what is installed on every image. Additionally we also attempt to maintain image parity across platforms with the exception of changes required to handle platform specifics. (ex. bootloader configuration, harddrive device naming) Using Packer as intended would produce AWS HVM and AWS paravirt images that diverged from one another as the build processes are completely different. The same goes for Vagrant images which would have been similar to AWS HVM images but divergent from paravirt images.

To solve these issues we use a multi-phase build process that builds an initial virtualbox VM that is then copied and reprocessed to create the AWS HVM, AWS paravirt, and Vagrant images. The resulting images vary only slightly and make all three images fairly predictable to the end user.

Repo Layout

  • files/
    • Ancilary files for building images or using this repo.
  • image-templates'
    • Packer templates for the different image formats to build for.
  • images/
    • Images for different platforms.
    • Images are names in the format <os_build>-.
      • ex. images/CentOS-7.0-x86_64-201409231340
    • An image for a particular image type will be in images/
      • Master: images/master
      • Vagrant: images/vagrant
      • AWS HVM: images/aws-hvm
      • AWS paravirt: _images/aws-paravirt
    • This location is controlled by the Packer build template
  • ks/
    • Kickstart files for building master image.
    • These files should be versioned by X.Y (ex. 6.5, 6.6) so older images can be reproduced.
      • NOTE: We could change this and expect that older versions be reproduced by setting the repo to the commit point at time of build. We'd need to record that.
  • packer_cache/
    • Location where Packer stores objects like installation media.
  • scripts/
    • Scripts to be run by templates during provisioners phase. Scripts are not automatically run and must be specified in the build template.
    • The subdirectories under scripts/ correspond to the image type being built. Scripts in images/common/ are meant to be executed by all or most image types.
  • tests/
    • spec testing framework for image verification.
    • See below for more information on the testing framework.

Packer templates

Packer is driven by JSON based templates. This repo contains two types; image templates which are used to drive the build and OS templates which are used to define vars used by the image template. The image template is the last argument passed to packer while the OS template is passed in via the -var-file command.

$ packer build -var-file=.json .json

Examples:

  • os template: CentOS-6.5-x86_64.json
  • image template: vagrant.json

At the top of each image template is a section called "variables" where all variables used in later sections must be defined. Some have defaults already set. (NOTE: timestamp has a default set to use the timestamp macro from packer to facilitate testing. The value is time since the Unix epoch and not the standard ISO-8601 format we use of YYYYMMDDhhmmss. ex. 201409221232 Always pass in a date from the command line using '-var timestamp='.)

The OS templates just contain values for the variables defined in the "variables" section of the image template. The process of adding a new OS version should start with simply creating a new OS template. Packer allows values in var-files to be overridden on the command line using '-var'.

Example command for overriding the headless option of a build.

$ packer build -var-file=CentOS-7.0-x86_64.json -var headless=false virtualbox.json

Testing

This repo provides a Serverspec based testing framework to ensure that images conform to a desired specification. The framework relies on two provisioners in the provisioner stage of the packer build. One to upload this repo's tests/ directory and a second to execute tests/serverspec.sh which will run the tests.

All image templates should have the following provisioners and executing tests/serverspec.sh should be the final one.

Example:

  "provisioners":
  [
    {
      "type"       : "file",
      "source"     : "tests",
      "destination": "/tmp"
    },
    {
      "type"             : "shell",
      "environment_vars" :
      [
        "IMAGE_TYPE={{user `image_type`}}",
        "AWS_TYPE={{user `aws_type`}}"
      ],
      "script"           : "tests/serverspec.sh"
    }
  ]

NOTE: the values for the environmental vars are provided via variables defined in the "varibales" section of the image template.

All tests are in subdirectories under the tests/spec/ directory. Tests in the tests/common/ directory will always be executed. Setting the IMAGE_TYPE environmental variable will cause additional tests in tests/spec/$IMAGE_TYPE to be executed. By convention "aws" is used for both HVM and paravirt images and AWS_TYPE is used to specify tests/spec/aws-hvm or tests/spec/aws-hvm.

About

Packer based build system for CentOS OS images

License:MIT License


Languages

Language:Ruby 57.4%Language:Shell 42.6%