2013-07-15 02:02:18 -04:00
|
|
|
package ebs
|
2013-05-21 03:55:32 -04:00
|
|
|
|
|
|
|
import (
|
2013-05-27 18:15:42 -04:00
|
|
|
"fmt"
|
2015-04-05 17:58:48 -04:00
|
|
|
|
2015-06-03 17:13:52 -04:00
|
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
2013-06-04 13:00:06 -04:00
|
|
|
"github.com/mitchellh/multistep"
|
2013-07-25 01:56:37 -04:00
|
|
|
awscommon "github.com/mitchellh/packer/builder/amazon/common"
|
2013-05-21 03:55:32 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
)
|
|
|
|
|
2014-05-19 12:40:39 -04:00
|
|
|
type stepCreateAMI struct {
|
|
|
|
image *ec2.Image
|
|
|
|
}
|
2013-05-21 03:55:32 -04:00
|
|
|
|
2013-08-31 16:00:43 -04:00
|
|
|
func (s *stepCreateAMI) Run(state multistep.StateBag) multistep.StepAction {
|
2015-05-27 14:35:56 -04:00
|
|
|
config := state.Get("config").(Config)
|
2013-08-31 16:00:43 -04:00
|
|
|
ec2conn := state.Get("ec2").(*ec2.EC2)
|
|
|
|
instance := state.Get("instance").(*ec2.Instance)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2013-05-21 03:55:32 -04:00
|
|
|
|
|
|
|
// Create the image
|
2013-08-08 17:57:38 -04:00
|
|
|
ui.Say(fmt.Sprintf("Creating the AMI: %s", config.AMIName))
|
2015-04-05 17:58:48 -04:00
|
|
|
createOpts := &ec2.CreateImageInput{
|
|
|
|
InstanceID: instance.InstanceID,
|
|
|
|
Name: &config.AMIName,
|
|
|
|
BlockDeviceMappings: config.BlockDevices.BuildAMIDevices(),
|
2013-05-21 03:55:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
createResp, err := ec2conn.CreateImage(createOpts)
|
|
|
|
if err != nil {
|
2013-06-19 23:54:02 -04:00
|
|
|
err := fmt.Errorf("Error creating AMI: %s", err)
|
2013-08-31 16:00:43 -04:00
|
|
|
state.Put("error", err)
|
2013-05-21 03:55:32 -04:00
|
|
|
ui.Error(err.Error())
|
2013-06-04 13:00:06 -04:00
|
|
|
return multistep.ActionHalt
|
2013-05-21 03:55:32 -04:00
|
|
|
}
|
|
|
|
|
2014-05-19 23:16:50 -04:00
|
|
|
// Set the AMI ID in the state
|
2015-04-05 17:58:48 -04:00
|
|
|
ui.Message(fmt.Sprintf("AMI: %s", *createResp.ImageID))
|
2013-05-22 01:28:41 -04:00
|
|
|
amis := make(map[string]string)
|
2015-07-28 20:10:21 -04:00
|
|
|
amis[*ec2conn.Config.Region] = *createResp.ImageID
|
2013-08-31 16:00:43 -04:00
|
|
|
state.Put("amis", amis)
|
2013-05-21 03:55:32 -04:00
|
|
|
|
|
|
|
// Wait for the image to become ready
|
2013-09-12 23:33:32 -04:00
|
|
|
stateChange := awscommon.StateChangeConf{
|
|
|
|
Pending: []string{"pending"},
|
|
|
|
Target: "available",
|
2015-04-05 17:58:48 -04:00
|
|
|
Refresh: awscommon.AMIStateRefreshFunc(ec2conn, *createResp.ImageID),
|
2013-09-12 23:33:32 -04:00
|
|
|
StepState: state,
|
|
|
|
}
|
|
|
|
|
2013-05-21 03:55:32 -04:00
|
|
|
ui.Say("Waiting for AMI to become ready...")
|
2013-09-12 23:33:32 -04:00
|
|
|
if _, err := awscommon.WaitForState(&stateChange); err != nil {
|
2013-07-25 01:56:37 -04:00
|
|
|
err := fmt.Errorf("Error waiting for AMI: %s", err)
|
2013-08-31 16:00:43 -04:00
|
|
|
state.Put("error", err)
|
2013-07-25 01:56:37 -04:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
2013-05-21 03:55:32 -04:00
|
|
|
}
|
|
|
|
|
2015-04-05 17:58:48 -04:00
|
|
|
imagesResp, err := ec2conn.DescribeImages(&ec2.DescribeImagesInput{ImageIDs: []*string{createResp.ImageID}})
|
2014-07-22 11:40:38 -04:00
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error searching for AMI: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2015-04-05 17:58:48 -04:00
|
|
|
s.image = imagesResp.Images[0]
|
2014-07-22 11:40:38 -04:00
|
|
|
|
2013-06-04 13:00:06 -04:00
|
|
|
return multistep.ActionContinue
|
2013-05-21 03:55:32 -04:00
|
|
|
}
|
|
|
|
|
2014-05-19 12:40:39 -04:00
|
|
|
func (s *stepCreateAMI) Cleanup(state multistep.StateBag) {
|
2014-09-08 12:52:49 -04:00
|
|
|
if s.image == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-09-06 13:12:33 -04:00
|
|
|
_, cancelled := state.GetOk(multistep.StateCancelled)
|
|
|
|
_, halted := state.GetOk(multistep.StateHalted)
|
|
|
|
if !cancelled && !halted {
|
2014-05-19 12:40:39 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ec2conn := state.Get("ec2").(*ec2.EC2)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
|
2014-09-06 13:12:33 -04:00
|
|
|
ui.Say("Deregistering the AMI because cancelation or error...")
|
2015-04-05 17:58:48 -04:00
|
|
|
deregisterOpts := &ec2.DeregisterImageInput{ImageID: s.image.ImageID}
|
|
|
|
if _, err := ec2conn.DeregisterImage(deregisterOpts); err != nil {
|
2014-05-19 12:40:39 -04:00
|
|
|
ui.Error(fmt.Sprintf("Error deregistering AMI, may still be around: %s", err))
|
|
|
|
return
|
|
|
|
}
|
2013-05-21 03:55:32 -04:00
|
|
|
}
|