2013-05-09 17:16:39 -04:00
|
|
|
// The amazonebs package contains a packer.Builder implementation that
|
|
|
|
// builds AMIs for Amazon EC2.
|
|
|
|
//
|
|
|
|
// In general, there are two types of AMIs that can be created: ebs-backed or
|
|
|
|
// instance-store. This builder _only_ builds ebs-backed images.
|
2013-07-15 02:02:18 -04:00
|
|
|
package ebs
|
2013-05-09 01:34:20 -04:00
|
|
|
|
|
|
|
import (
|
2013-06-08 20:41:56 -04:00
|
|
|
"errors"
|
2013-06-08 20:54:18 -04:00
|
|
|
"fmt"
|
2013-05-10 18:21:11 -04:00
|
|
|
"github.com/mitchellh/goamz/aws"
|
|
|
|
"github.com/mitchellh/goamz/ec2"
|
2013-06-04 13:00:06 -04:00
|
|
|
"github.com/mitchellh/multistep"
|
2013-07-16 00:08:19 -04:00
|
|
|
awscommon "github.com/mitchellh/packer/builder/amazon/common"
|
2013-06-15 13:51:09 -04:00
|
|
|
"github.com/mitchellh/packer/builder/common"
|
2013-05-09 01:34:20 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-05-09 16:26:40 -04:00
|
|
|
"log"
|
2013-06-17 18:24:33 -04:00
|
|
|
"text/template"
|
2013-05-09 01:34:20 -04:00
|
|
|
)
|
|
|
|
|
2013-05-22 01:28:41 -04:00
|
|
|
// The unique ID for this builder
|
|
|
|
const BuilderId = "mitchellh.amazonebs"
|
|
|
|
|
2013-05-09 01:34:20 -04:00
|
|
|
type config struct {
|
2013-07-16 00:28:49 -04:00
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
2013-07-16 00:08:19 -04:00
|
|
|
awscommon.AccessConfig `mapstructure:",squash"`
|
2013-07-16 00:23:40 -04:00
|
|
|
awscommon.RunConfig `mapstructure:",squash"`
|
2013-05-20 19:50:35 -04:00
|
|
|
|
|
|
|
// Configuration of the resulting AMI
|
|
|
|
AMIName string `mapstructure:"ami_name"`
|
2013-05-09 01:34:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type Builder struct {
|
|
|
|
config config
|
2013-06-04 13:53:35 -04:00
|
|
|
runner multistep.Runner
|
2013-05-09 01:34:20 -04:00
|
|
|
}
|
|
|
|
|
2013-06-14 15:29:48 -04:00
|
|
|
func (b *Builder) Prepare(raws ...interface{}) error {
|
2013-07-19 14:59:04 -04:00
|
|
|
md, err := common.DecodeConfig(&b.config, raws...)
|
2013-07-13 20:28:56 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-06-14 15:29:48 -04:00
|
|
|
|
2013-07-13 20:28:56 -04:00
|
|
|
// Accumulate any errors
|
2013-07-19 19:08:25 -04:00
|
|
|
errs := common.CheckUnusedConfig(md)
|
2013-07-16 00:24:18 -04:00
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.AccessConfig.Prepare()...)
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.RunConfig.Prepare()...)
|
2013-07-13 20:28:56 -04:00
|
|
|
|
2013-06-08 20:41:56 -04:00
|
|
|
// Accumulate any errors
|
2013-06-17 18:24:33 -04:00
|
|
|
if b.config.AMIName == "" {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("ami_name must be specified"))
|
2013-06-17 18:24:33 -04:00
|
|
|
} else {
|
|
|
|
_, err = template.New("ami").Parse(b.config.AMIName)
|
|
|
|
if err != nil {
|
2013-07-19 19:08:25 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("Failed parsing ami_name: %s", err))
|
2013-06-17 18:24:33 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-19 19:08:25 -04:00
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
|
|
|
return errs
|
2013-06-08 20:41:56 -04:00
|
|
|
}
|
2013-05-10 16:01:54 -04:00
|
|
|
|
2013-06-08 20:41:56 -04:00
|
|
|
log.Printf("Config: %+v", b.config)
|
2013-06-11 17:09:16 -04:00
|
|
|
return nil
|
2013-05-09 13:54:42 -04:00
|
|
|
}
|
2013-05-09 01:34:20 -04:00
|
|
|
|
2013-06-12 19:06:56 -04:00
|
|
|
func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packer.Artifact, error) {
|
2013-06-02 00:50:20 -04:00
|
|
|
region, ok := aws.Regions[b.config.Region]
|
|
|
|
if !ok {
|
|
|
|
panic("region not found")
|
|
|
|
}
|
|
|
|
|
2013-07-16 00:08:19 -04:00
|
|
|
auth, err := b.config.AccessConfig.Auth()
|
2013-07-11 15:56:59 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2013-05-10 18:21:11 -04:00
|
|
|
ec2conn := ec2.New(auth, region)
|
|
|
|
|
2013-05-21 03:55:32 -04:00
|
|
|
// Setup the state bag and initial state for the steps
|
|
|
|
state := make(map[string]interface{})
|
|
|
|
state["config"] = b.config
|
|
|
|
state["ec2"] = ec2conn
|
|
|
|
state["hook"] = hook
|
|
|
|
state["ui"] = ui
|
2013-05-10 18:21:11 -04:00
|
|
|
|
2013-05-21 03:55:32 -04:00
|
|
|
// Build the steps
|
2013-06-04 13:00:06 -04:00
|
|
|
steps := []multistep.Step{
|
2013-07-20 22:40:45 -04:00
|
|
|
&awscommon.StepKeyPair{},
|
2013-07-20 22:50:55 -04:00
|
|
|
&awscommon.StepSecurityGroup{
|
|
|
|
SecurityGroupId: b.config.SecurityGroupId,
|
2013-07-20 22:58:27 -04:00
|
|
|
SSHPort: b.config.SSHPort,
|
|
|
|
},
|
|
|
|
&awscommon.StepRunSourceInstance{
|
|
|
|
ExpectedRootDevice: "ebs",
|
|
|
|
InstanceType: b.config.InstanceType,
|
|
|
|
SourceAMI: b.config.SourceAmi,
|
2013-07-20 22:50:55 -04:00
|
|
|
},
|
2013-07-15 01:06:41 -04:00
|
|
|
&common.StepConnectSSH{
|
2013-07-20 23:03:00 -04:00
|
|
|
SSHAddress: awscommon.SSHAddress(b.config.SSHPort),
|
|
|
|
SSHConfig: awscommon.SSHConfig(b.config.SSHUsername),
|
2013-07-16 00:23:40 -04:00
|
|
|
SSHWaitTimeout: b.config.SSHTimeout(),
|
2013-07-15 01:06:41 -04:00
|
|
|
},
|
2013-07-16 02:44:41 -04:00
|
|
|
&common.StepProvision{},
|
2013-05-21 03:55:32 -04:00
|
|
|
&stepStopInstance{},
|
|
|
|
&stepCreateAMI{},
|
2013-05-21 02:18:44 -04:00
|
|
|
}
|
|
|
|
|
2013-05-21 03:55:32 -04:00
|
|
|
// Run!
|
2013-06-15 13:51:09 -04:00
|
|
|
if b.config.PackerDebug {
|
|
|
|
b.runner = &multistep.DebugRunner{
|
|
|
|
Steps: steps,
|
|
|
|
PauseFn: common.MultistepDebugFn(ui),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
b.runner = &multistep.BasicRunner{Steps: steps}
|
|
|
|
}
|
|
|
|
|
2013-06-04 13:53:35 -04:00
|
|
|
b.runner.Run(state)
|
2013-05-22 01:28:41 -04:00
|
|
|
|
2013-06-19 23:54:02 -04:00
|
|
|
// If there was an error, return that
|
|
|
|
if rawErr, ok := state["error"]; ok {
|
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
2013-06-19 00:54:33 -04:00
|
|
|
// If there are no AMIs, then just return
|
2013-06-04 14:26:08 -04:00
|
|
|
if _, ok := state["amis"]; !ok {
|
2013-06-12 19:06:56 -04:00
|
|
|
return nil, nil
|
2013-06-04 13:59:12 -04:00
|
|
|
}
|
|
|
|
|
2013-05-22 01:28:41 -04:00
|
|
|
// Build the artifact and return it
|
2013-07-20 23:08:41 -04:00
|
|
|
artifact := &awscommon.Artifact{
|
|
|
|
Amis: state["amis"].(map[string]string),
|
|
|
|
BuilderIdValue: BuilderId,
|
|
|
|
Conn: ec2conn,
|
2013-06-18 19:24:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return artifact, nil
|
2013-05-10 16:01:54 -04:00
|
|
|
}
|
2013-06-03 17:44:34 -04:00
|
|
|
|
|
|
|
func (b *Builder) Cancel() {
|
2013-06-04 13:53:35 -04:00
|
|
|
if b.runner != nil {
|
|
|
|
log.Println("Cancelling the step runner...")
|
|
|
|
b.runner.Cancel()
|
|
|
|
}
|
2013-06-03 17:44:34 -04:00
|
|
|
}
|