87 lines
2.5 KiB
Go
87 lines
2.5 KiB
Go
package amazonebs
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/mitchellh/goamz/ec2"
|
|
"github.com/mitchellh/multistep"
|
|
"github.com/mitchellh/packer/packer"
|
|
"log"
|
|
)
|
|
|
|
type stepRunSourceInstance struct {
|
|
instance *ec2.Instance
|
|
}
|
|
|
|
func (s *stepRunSourceInstance) Run(state map[string]interface{}) multistep.StepAction {
|
|
config := state["config"].(config)
|
|
ec2conn := state["ec2"].(*ec2.EC2)
|
|
keyName := state["keyPair"].(string)
|
|
securityGroupId := state["securityGroupId"].(string)
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
runOpts := &ec2.RunInstances{
|
|
KeyName: keyName,
|
|
ImageId: config.SourceAmi,
|
|
InstanceType: config.InstanceType,
|
|
MinCount: 0,
|
|
MaxCount: 0,
|
|
SecurityGroups: []ec2.SecurityGroup{ec2.SecurityGroup{Id: securityGroupId}},
|
|
}
|
|
|
|
ui.Say("Launching a source AWS instance...")
|
|
imageResp, err := ec2conn.Images([]string{config.SourceAmi}, ec2.NewFilter())
|
|
if err != nil {
|
|
state["error"] = fmt.Errorf("There was a problem with the source AMI: %s", err)
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
if imageResp.Images[0].RootDeviceType != "ebs" {
|
|
state["error"] = fmt.Errorf(
|
|
"The provided source AMI is instance-store based. The\n" +
|
|
"amazon-ebs bundler can only work with EBS based AMIs.")
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
runResp, err := ec2conn.RunInstances(runOpts)
|
|
if err != nil {
|
|
err := fmt.Errorf("Error launching source instance: %s", err)
|
|
state["error"] = err
|
|
ui.Error(err.Error())
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
s.instance = &runResp.Instances[0]
|
|
log.Printf("instance id: %s", s.instance.InstanceId)
|
|
|
|
ui.Say(fmt.Sprintf("Waiting for instance (%s) to become ready...", s.instance.InstanceId))
|
|
s.instance, err = waitForState(ec2conn, s.instance, []string{"pending"}, "running")
|
|
if err != nil {
|
|
err := fmt.Errorf("Error waiting for instance (%s) to become ready: %s", s.instance.InstanceId, err)
|
|
state["error"] = err
|
|
ui.Error(err.Error())
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
state["instance"] = s.instance
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (s *stepRunSourceInstance) Cleanup(state map[string]interface{}) {
|
|
if s.instance == nil {
|
|
return
|
|
}
|
|
|
|
ec2conn := state["ec2"].(*ec2.EC2)
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
ui.Say("Terminating the source AWS instance...")
|
|
if _, err := ec2conn.TerminateInstances([]string{s.instance.InstanceId}); err != nil {
|
|
ui.Error(fmt.Sprintf("Error terminating instance, may still be around: %s", err))
|
|
return
|
|
}
|
|
|
|
pending := []string{"pending", "running", "shutting-down", "stopped", "stopping"}
|
|
waitForState(ec2conn, s.instance, pending, "terminated")
|
|
}
|