2013-05-09 14:16:39 -07: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 15:02:18 +09:00
|
|
|
package ebs
|
2013-05-08 22:34:20 -07:00
|
|
|
|
|
|
|
import (
|
2013-08-30 14:48:50 -07:00
|
|
|
"fmt"
|
2014-06-04 14:58:11 -07:00
|
|
|
"log"
|
|
|
|
|
2015-06-03 17:13:52 -04:00
|
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
2013-06-04 10:00:06 -07:00
|
|
|
"github.com/mitchellh/multistep"
|
2013-07-16 13:08:19 +09:00
|
|
|
awscommon "github.com/mitchellh/packer/builder/amazon/common"
|
2013-08-01 12:11:54 -07:00
|
|
|
"github.com/mitchellh/packer/common"
|
2015-06-13 18:16:12 -04:00
|
|
|
"github.com/mitchellh/packer/helper/communicator"
|
2015-05-27 11:35:56 -07:00
|
|
|
"github.com/mitchellh/packer/helper/config"
|
2013-05-08 22:34:20 -07:00
|
|
|
"github.com/mitchellh/packer/packer"
|
2015-05-27 11:35:56 -07:00
|
|
|
"github.com/mitchellh/packer/template/interpolate"
|
2013-05-08 22:34:20 -07:00
|
|
|
)
|
|
|
|
|
2013-05-21 22:28:41 -07:00
|
|
|
// The unique ID for this builder
|
|
|
|
const BuilderId = "mitchellh.amazonebs"
|
|
|
|
|
2015-05-27 11:35:56 -07:00
|
|
|
type Config struct {
|
2013-07-16 13:28:49 +09:00
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
2013-07-16 13:08:19 +09:00
|
|
|
awscommon.AccessConfig `mapstructure:",squash"`
|
2013-08-08 22:50:23 -07:00
|
|
|
awscommon.AMIConfig `mapstructure:",squash"`
|
2013-08-15 14:05:08 -07:00
|
|
|
awscommon.BlockDevices `mapstructure:",squash"`
|
2013-07-16 13:23:40 +09:00
|
|
|
awscommon.RunConfig `mapstructure:",squash"`
|
2013-05-20 16:50:35 -07:00
|
|
|
|
2015-05-27 11:35:56 -07:00
|
|
|
ctx *interpolate.Context
|
2013-05-08 22:34:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
type Builder struct {
|
2015-05-27 11:35:56 -07:00
|
|
|
config Config
|
2013-06-04 10:53:35 -07:00
|
|
|
runner multistep.Runner
|
2013-05-08 22:34:20 -07:00
|
|
|
}
|
|
|
|
|
2013-11-02 22:56:54 -05:00
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
2015-05-27 11:35:56 -07:00
|
|
|
b.config.ctx = &interpolate.Context{Funcs: awscommon.TemplateFuncs}
|
|
|
|
err := config.Decode(&b.config, &config.DecodeOpts{
|
|
|
|
Interpolate: true,
|
|
|
|
InterpolateContext: b.config.ctx,
|
|
|
|
}, raws...)
|
2013-07-14 09:28:56 +09:00
|
|
|
if err != nil {
|
2013-11-02 22:56:54 -05:00
|
|
|
return nil, err
|
2013-07-14 09:28:56 +09:00
|
|
|
}
|
2013-06-14 12:29:48 -07:00
|
|
|
|
2013-07-14 09:28:56 +09:00
|
|
|
// Accumulate any errors
|
2015-05-27 11:35:56 -07:00
|
|
|
var errs *packer.MultiError
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.AccessConfig.Prepare(b.config.ctx)...)
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.BlockDevices.Prepare(b.config.ctx)...)
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.AMIConfig.Prepare(b.config.ctx)...)
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.RunConfig.Prepare(b.config.ctx)...)
|
2013-07-14 09:28:56 +09:00
|
|
|
|
2013-07-19 19:08:25 -04:00
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
2013-11-02 22:56:54 -05:00
|
|
|
return nil, errs
|
2013-06-08 17:41:56 -07:00
|
|
|
}
|
2013-05-10 13:01:54 -07:00
|
|
|
|
2013-11-02 11:57:33 +04:00
|
|
|
log.Println(common.ScrubConfig(b.config, b.config.AccessKey, b.config.SecretKey))
|
2013-11-02 22:56:54 -05:00
|
|
|
return nil, nil
|
2013-05-09 10:54:42 -07:00
|
|
|
}
|
2013-05-08 22:34:20 -07:00
|
|
|
|
2013-06-12 16:06:56 -07:00
|
|
|
func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packer.Artifact, error) {
|
2015-04-05 17:58:48 -04:00
|
|
|
config, err := b.config.Config()
|
2013-07-29 16:42:35 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2013-06-01 21:50:20 -07:00
|
|
|
}
|
|
|
|
|
2015-04-05 17:58:48 -04:00
|
|
|
ec2conn := ec2.New(config)
|
2013-05-10 15:21:11 -07:00
|
|
|
|
2013-05-21 00:55:32 -07:00
|
|
|
// Setup the state bag and initial state for the steps
|
2013-08-31 13:00:43 -07:00
|
|
|
state := new(multistep.BasicStateBag)
|
|
|
|
state.Put("config", b.config)
|
|
|
|
state.Put("ec2", ec2conn)
|
|
|
|
state.Put("hook", hook)
|
|
|
|
state.Put("ui", ui)
|
2013-05-10 15:21:11 -07:00
|
|
|
|
2013-05-21 00:55:32 -07:00
|
|
|
// Build the steps
|
2013-06-04 10:00:06 -07:00
|
|
|
steps := []multistep.Step{
|
2015-06-08 17:08:39 -05:00
|
|
|
&awscommon.StepPreValidate{
|
|
|
|
DestAmiName: b.config.AMIName,
|
|
|
|
},
|
2014-06-04 14:58:11 -07:00
|
|
|
&awscommon.StepSourceAMIInfo{
|
|
|
|
SourceAmi: b.config.SourceAmi,
|
|
|
|
EnhancedNetworking: b.config.AMIEnhancedNetworking,
|
|
|
|
},
|
2013-08-30 14:48:50 -07:00
|
|
|
&awscommon.StepKeyPair{
|
2014-03-24 12:47:00 +01:00
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
DebugKeyPath: fmt.Sprintf("ec2_%s.pem", b.config.PackerBuildName),
|
|
|
|
KeyPairName: b.config.TemporaryKeyPairName,
|
2015-06-13 18:16:12 -04:00
|
|
|
PrivateKeyFile: b.config.RunConfig.Comm.SSHPrivateKey,
|
2013-08-30 14:48:50 -07:00
|
|
|
},
|
2013-07-20 19:50:55 -07:00
|
|
|
&awscommon.StepSecurityGroup{
|
2013-10-02 10:52:16 -07:00
|
|
|
SecurityGroupIds: b.config.SecurityGroupIds,
|
2015-06-13 18:16:12 -04:00
|
|
|
SSHPort: b.config.RunConfig.Comm.SSHPort,
|
2013-10-02 10:52:16 -07:00
|
|
|
VpcId: b.config.VpcId,
|
2013-07-20 19:58:27 -07:00
|
|
|
},
|
|
|
|
&awscommon.StepRunSourceInstance{
|
2013-11-26 11:32:08 +10:00
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
ExpectedRootDevice: "ebs",
|
2014-05-08 01:13:27 +08:00
|
|
|
SpotPrice: b.config.SpotPrice,
|
2014-09-06 10:44:12 -07:00
|
|
|
SpotPriceProduct: b.config.SpotPriceAutoProduct,
|
2013-11-26 11:32:08 +10:00
|
|
|
InstanceType: b.config.InstanceType,
|
|
|
|
UserData: b.config.UserData,
|
|
|
|
UserDataFile: b.config.UserDataFile,
|
|
|
|
SourceAMI: b.config.SourceAmi,
|
|
|
|
IamInstanceProfile: b.config.IamInstanceProfile,
|
|
|
|
SubnetId: b.config.SubnetId,
|
|
|
|
AssociatePublicIpAddress: b.config.AssociatePublicIpAddress,
|
|
|
|
AvailabilityZone: b.config.AvailabilityZone,
|
|
|
|
BlockDevices: b.config.BlockDevices,
|
2013-12-27 20:54:35 -07:00
|
|
|
Tags: b.config.RunTags,
|
2013-07-20 19:50:55 -07:00
|
|
|
},
|
2015-06-13 18:16:12 -04:00
|
|
|
&communicator.StepConnect{
|
|
|
|
Config: &b.config.RunConfig.Comm,
|
2015-06-13 19:23:33 -04:00
|
|
|
Host: awscommon.SSHHost(
|
2015-06-13 18:16:12 -04:00
|
|
|
ec2conn,
|
|
|
|
b.config.SSHPrivateIp),
|
|
|
|
SSHConfig: awscommon.SSHConfig(
|
|
|
|
b.config.RunConfig.Comm.SSHUsername),
|
2013-07-15 14:06:41 +09:00
|
|
|
},
|
2013-07-16 15:44:41 +09:00
|
|
|
&common.StepProvision{},
|
2014-05-08 01:13:27 +08:00
|
|
|
&stepStopInstance{SpotPrice: b.config.SpotPrice},
|
2014-09-05 16:30:22 -07:00
|
|
|
// TODO(mitchellh): verify works with spots
|
2014-06-04 14:58:11 -07:00
|
|
|
&stepModifyInstance{},
|
2013-08-06 14:54:14 -07:00
|
|
|
&stepCreateAMI{},
|
2013-09-04 16:06:06 -07:00
|
|
|
&awscommon.StepAMIRegionCopy{
|
2015-05-28 08:31:22 -07:00
|
|
|
AccessConfig: &b.config.AccessConfig,
|
|
|
|
Regions: b.config.AMIRegions,
|
2015-06-05 11:15:48 +00:00
|
|
|
Name: b.config.AMIName,
|
2013-09-04 16:06:06 -07:00
|
|
|
},
|
2013-08-22 15:35:47 -07:00
|
|
|
&awscommon.StepModifyAMIAttributes{
|
|
|
|
Description: b.config.AMIDescription,
|
|
|
|
Users: b.config.AMIUsers,
|
|
|
|
Groups: b.config.AMIGroups,
|
|
|
|
},
|
2013-08-22 15:09:21 -07:00
|
|
|
&awscommon.StepCreateTags{
|
|
|
|
Tags: b.config.AMITags,
|
2013-08-22 15:03:30 -07:00
|
|
|
},
|
2013-05-20 23:18:44 -07:00
|
|
|
}
|
|
|
|
|
2013-05-21 00:55:32 -07:00
|
|
|
// Run!
|
2013-06-15 10:51:09 -07: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 10:53:35 -07:00
|
|
|
b.runner.Run(state)
|
2013-05-21 22:28:41 -07:00
|
|
|
|
2013-06-19 20:54:02 -07:00
|
|
|
// If there was an error, return that
|
2013-08-31 13:00:43 -07:00
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
2013-06-19 20:54:02 -07:00
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
2013-06-18 21:54:33 -07:00
|
|
|
// If there are no AMIs, then just return
|
2013-08-31 13:00:43 -07:00
|
|
|
if _, ok := state.GetOk("amis"); !ok {
|
2013-06-12 16:06:56 -07:00
|
|
|
return nil, nil
|
2013-06-04 10:59:12 -07:00
|
|
|
}
|
|
|
|
|
2013-05-21 22:28:41 -07:00
|
|
|
// Build the artifact and return it
|
2013-07-20 20:08:41 -07:00
|
|
|
artifact := &awscommon.Artifact{
|
2013-08-31 13:00:43 -07:00
|
|
|
Amis: state.Get("amis").(map[string]string),
|
2013-07-20 20:08:41 -07:00
|
|
|
BuilderIdValue: BuilderId,
|
2013-07-20 20:08:54 -07:00
|
|
|
Conn: ec2conn,
|
2013-06-18 16:24:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return artifact, nil
|
2013-05-10 13:01:54 -07:00
|
|
|
}
|
2013-06-03 14:44:34 -07:00
|
|
|
|
|
|
|
func (b *Builder) Cancel() {
|
2013-06-04 10:53:35 -07:00
|
|
|
if b.runner != nil {
|
|
|
|
log.Println("Cancelling the step runner...")
|
|
|
|
b.runner.Cancel()
|
|
|
|
}
|
2013-06-03 14:44:34 -07:00
|
|
|
}
|