2013-06-21 23:10:24 -04:00
|
|
|
---
|
|
|
|
layout: "intro"
|
|
|
|
page_title: "Parallel Builds"
|
|
|
|
prev_url: "/intro/getting-started/provision.html"
|
2013-06-28 08:37:13 -04:00
|
|
|
next_url: "/intro/getting-started/vagrant.html"
|
|
|
|
next_title: "Vagrant Boxes"
|
2013-06-21 23:10:24 -04:00
|
|
|
---
|
|
|
|
|
|
|
|
# Parallel Builds
|
|
|
|
|
|
|
|
So far we've shown how Packer can automatically build an image and provision it.
|
|
|
|
This on its own is already quite powerful. But Packer can do better than that.
|
|
|
|
Packer can create multiple images for multiple platforms _in parallel_, all
|
|
|
|
configured from a single template.
|
|
|
|
|
|
|
|
This is a very useful and important feature of Packer. As an example,
|
|
|
|
Packer is able to make an AMI and a VMware virtual machine
|
|
|
|
in parallel provisioned with the _same scripts_, resulting in near-identical
|
|
|
|
images. The AMI can be used for production, the VMware machine can be used
|
|
|
|
for development. Or, another example, if you're using Packer to build
|
|
|
|
[software appliances](http://en.wikipedia.org/wiki/Software_appliance),
|
|
|
|
then you can build the appliance for every supported platform all in
|
|
|
|
parallel, all configured from a single template.
|
|
|
|
|
|
|
|
Once you start taking advantage of this feature, the possibilities begin
|
|
|
|
to unfold in front of you.
|
|
|
|
|
|
|
|
Continuing on the example in this getting started guide, we'll build
|
|
|
|
a [DigitalOcean](http://www.digitalocean.com) image as well as an AMI. Both
|
|
|
|
will be near-identical: bare bones Ubuntu OS with Redis pre-installed.
|
|
|
|
However, since we're building for both platforms, you have the option of
|
|
|
|
whether you want to use the AMI, or the DigitalOcean snapshot. Or use both.
|
|
|
|
|
|
|
|
## Setting Up DigitalOcean
|
|
|
|
|
|
|
|
[DigitalOcean](https://www.digitalocean.com/) is a relatively new, but
|
|
|
|
very popular VPS provider that has popped up. They have a quality offering
|
|
|
|
of high performance, low cost VPS servers. We'll be building a DigitalOcean
|
|
|
|
snapshot for this example.
|
|
|
|
|
|
|
|
In order to do this, you'll need an account with DigitalOcean.
|
|
|
|
[Sign up for an account now](https://www.digitalocean.com/). It is free
|
|
|
|
to sign up. Because the "droplets" (servers) are charged hourly, you
|
|
|
|
_will_ be charged $0.01 for every image you create with Packer. If
|
|
|
|
you're not okay with this, just follow along.
|
|
|
|
|
|
|
|
<div class="alert alert-block alert-warn">
|
|
|
|
<strong>Note!</strong> I want to repeat, in case you didn't see above:
|
|
|
|
You <em>will</em> be charged $0.01 by DigitalOcean per image created with Packer
|
|
|
|
because of the time the "droplet" is running.
|
|
|
|
</div>
|
|
|
|
|
|
|
|
Once you sign up for an account, grab your client ID and API key from
|
|
|
|
the [DigitalOcean API access page](https://www.digitalocean.com/api_access).
|
|
|
|
Save these values somewhere, you'll need them in a second.
|
|
|
|
|
|
|
|
## Modifying the Template
|
|
|
|
|
|
|
|
We now have to modify the template to add DigitalOcean to it. Modify the
|
|
|
|
template we've been using and add the following JSON object to the `builders`
|
|
|
|
array.
|
|
|
|
|
|
|
|
<pre class="prettyprint">
|
|
|
|
{
|
|
|
|
"type": "digitalocean",
|
2013-11-25 07:47:23 -05:00
|
|
|
"api_key": "{{user `do_api_key`}}",
|
|
|
|
"client_id": "{{user `do_client_id`}}"
|
2013-06-21 23:10:24 -04:00
|
|
|
}
|
|
|
|
</pre>
|
|
|
|
|
2013-11-25 07:47:23 -05:00
|
|
|
You'll also need to modify the `variables` section of the template
|
|
|
|
to include the access keys for DigitalOcean.
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
"variables": {
|
|
|
|
...
|
|
|
|
"do_api_key": "",
|
|
|
|
"do_client_id": ""
|
|
|
|
}
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
The entire template should now [look like this](https://gist.github.com/pearkes/cc5f8505eee5403a43a6).
|
2013-06-21 23:10:24 -04:00
|
|
|
|
|
|
|
Additional builders are simply added to the `builders` array in the template.
|
|
|
|
This tells Packer to build multiple images. The builder `type` values don't
|
2013-07-03 05:55:25 -04:00
|
|
|
even need to be different! In fact, if you wanted to build multiple AMIs,
|
2013-06-21 23:10:24 -04:00
|
|
|
you can do that as well.
|
|
|
|
|
|
|
|
Validate the template with `packer validate`. This is always a good practice.
|
|
|
|
|
2013-06-28 08:18:03 -04:00
|
|
|
<div class="alert alert-block alert-info">
|
|
|
|
<strong>If you're looking for more DigitalOcean configuration options</strong>,
|
|
|
|
you can find them on the <a href="/docs/builders/digitalocean.html">DigitalOcean
|
|
|
|
Builder page</a> in the documentation. The documentation is more of a reference
|
|
|
|
manual that contains a listing of all the available configuration options.
|
|
|
|
</div>
|
|
|
|
|
2013-06-21 23:10:24 -04:00
|
|
|
## Build
|
|
|
|
|
2013-11-25 07:47:23 -05:00
|
|
|
Now run `packer build` with your user variables. The output is too verbose to include
|
2013-06-21 23:10:24 -04:00
|
|
|
all of it, but a portion of it is reproduced below. Note that the ordering
|
|
|
|
and wording of the lines may be slightly different, but the effect is the
|
|
|
|
same.
|
|
|
|
|
|
|
|
```
|
2013-11-25 07:47:23 -05:00
|
|
|
$ packer build \
|
|
|
|
-var 'aws_access_key=YOUR ACCESS KEY' \
|
|
|
|
-var 'aws_secret_key=YOUR SECRET KEY' \
|
|
|
|
-var 'do_api_key=YOUR API KEY' \
|
|
|
|
-var 'do_client_id=YOUR CLIENT ID' \
|
|
|
|
example.json
|
2013-06-21 23:10:24 -04:00
|
|
|
==> amazon-ebs: amazon-ebs output will be in this color.
|
|
|
|
==> digitalocean: digitalocean output will be in this color.
|
|
|
|
|
|
|
|
==> digitalocean: Creating temporary ssh key for droplet...
|
|
|
|
==> amazon-ebs: Creating temporary keypair for this instance...
|
|
|
|
==> amazon-ebs: Creating temporary security group for this instance...
|
|
|
|
==> digitalocean: Creating droplet...
|
|
|
|
==> amazon-ebs: Authorizing SSH access on the temporary security group...
|
|
|
|
==> amazon-ebs: Launching a source AWS instance...
|
|
|
|
==> digitalocean: Waiting for droplet to become active...
|
|
|
|
==> amazon-ebs: Waiting for instance to become ready...
|
|
|
|
==> digitalocean: Connecting to the droplet via SSH...
|
|
|
|
==> amazon-ebs: Connecting to the instance via SSH...
|
|
|
|
...
|
|
|
|
==> Builds finished. The artifacts of successful builds are:
|
|
|
|
--> amazon-ebs: AMIs were created:
|
|
|
|
|
|
|
|
us-east-1: ami-376d1d5e
|
|
|
|
--> digitalocean: A snapshot was created: packer-1371870364
|
|
|
|
```
|
|
|
|
|
|
|
|
As you can see, Packer builds both the Amazon and DigitalOcean images
|
|
|
|
in parallel. It outputs information about each in different colors
|
|
|
|
(although you can't see that in the block above) so that it is easy to identify.
|
|
|
|
|
|
|
|
At the end of the build, Packer outputs both of the artifacts created
|
|
|
|
(an AMI and a DigitalOcean snapshot). Both images created are bare bones
|
|
|
|
Ubuntu installations with Redis pre-installed.
|