2013-07-24 23:29:21 -05:00
|
|
|
package instance
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-07-24 16:30:30 -07:00
|
|
|
|
2013-07-24 23:29:21 -05:00
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
2015-05-27 11:47:45 -07:00
|
|
|
"github.com/mitchellh/packer/template/interpolate"
|
2013-07-24 23:29:21 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type uploadCmdData struct {
|
|
|
|
AccessKey string
|
|
|
|
BucketName string
|
|
|
|
BundleDirectory string
|
|
|
|
ManifestPath string
|
2014-08-18 08:42:32 -10:00
|
|
|
Region string
|
2013-07-24 23:29:21 -05:00
|
|
|
SecretKey string
|
|
|
|
}
|
|
|
|
|
2014-07-24 16:30:30 -07:00
|
|
|
type StepUploadBundle struct {
|
|
|
|
Debug bool
|
|
|
|
}
|
2013-07-24 23:29:21 -05:00
|
|
|
|
2013-08-31 13:03:13 -07:00
|
|
|
func (s *StepUploadBundle) Run(state multistep.StateBag) multistep.StepAction {
|
|
|
|
comm := state.Get("communicator").(packer.Communicator)
|
|
|
|
config := state.Get("config").(*Config)
|
|
|
|
manifestName := state.Get("manifest_name").(string)
|
|
|
|
manifestPath := state.Get("manifest_path").(string)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2013-07-24 23:29:21 -05:00
|
|
|
|
2013-12-06 19:04:40 -08:00
|
|
|
region, err := config.Region()
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error retrieving region: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2015-05-27 11:47:45 -07:00
|
|
|
config.ctx.Data = uploadCmdData{
|
2013-07-24 23:29:21 -05:00
|
|
|
AccessKey: config.AccessKey,
|
|
|
|
BucketName: config.S3Bucket,
|
|
|
|
BundleDirectory: config.BundleDestination,
|
2013-07-24 23:51:46 -05:00
|
|
|
ManifestPath: manifestPath,
|
2015-04-05 17:58:48 -04:00
|
|
|
Region: region,
|
2013-07-24 23:51:46 -05:00
|
|
|
SecretKey: config.SecretKey,
|
2015-05-27 11:47:45 -07:00
|
|
|
}
|
|
|
|
config.BundleUploadCommand, err = interpolate.Render(config.BundleUploadCommand, config.ctx)
|
2013-08-08 15:27:12 -07:00
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error processing bundle upload command: %s", err)
|
2013-08-31 13:03:13 -07:00
|
|
|
state.Put("error", err)
|
2013-08-08 15:27:12 -07:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
2013-07-24 23:29:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ui.Say("Uploading the bundle...")
|
2013-08-08 15:27:12 -07:00
|
|
|
cmd := &packer.RemoteCmd{Command: config.BundleUploadCommand}
|
2014-07-24 16:30:30 -07:00
|
|
|
|
|
|
|
if s.Debug {
|
|
|
|
ui.Say(fmt.Sprintf("Running: %s", config.BundleUploadCommand))
|
|
|
|
}
|
|
|
|
|
2013-07-24 23:29:21 -05:00
|
|
|
if err := cmd.StartWithUi(comm, ui); err != nil {
|
2013-08-31 13:03:13 -07:00
|
|
|
state.Put("error", fmt.Errorf("Error uploading volume: %s", err))
|
|
|
|
ui.Error(state.Get("error").(error).Error())
|
2013-07-24 23:29:21 -05:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
if cmd.ExitStatus != 0 {
|
2013-08-31 13:03:13 -07:00
|
|
|
state.Put("error", fmt.Errorf(
|
|
|
|
"Bundle upload failed. Please see the output above for more\n"+
|
|
|
|
"details on what went wrong."))
|
|
|
|
ui.Error(state.Get("error").(error).Error())
|
2013-07-24 23:29:21 -05:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2013-08-31 13:03:13 -07:00
|
|
|
state.Put("remote_manifest_path", fmt.Sprintf(
|
|
|
|
"%s/%s", config.S3Bucket, manifestName))
|
2013-07-25 00:19:04 -05:00
|
|
|
|
2013-07-24 23:29:21 -05:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2013-08-31 13:03:13 -07:00
|
|
|
func (s *StepUploadBundle) Cleanup(state multistep.StateBag) {}
|