2014-12-29 06:46:54 -06:00
|
|
|
package xva
|
|
|
|
|
|
|
|
import (
|
2014-12-31 09:21:54 -06:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2014-12-29 06:46:54 -06:00
|
|
|
|
|
|
|
"github.com/mitchellh/multistep"
|
2014-12-31 09:21:54 -06:00
|
|
|
"github.com/mitchellh/packer/packer"
|
2015-03-13 08:23:20 -05:00
|
|
|
xsclient "github.com/xenserver/go-xenserver-client"
|
2016-07-15 11:27:11 -05:00
|
|
|
xscommon "github.com/xenserver/packer-builder-xenserver/builder/xenserver/common"
|
2014-12-29 06:46:54 -06:00
|
|
|
)
|
|
|
|
|
2014-12-31 09:21:54 -06:00
|
|
|
type stepImportInstance struct {
|
2015-03-13 08:23:20 -05:00
|
|
|
instance *xsclient.VM
|
|
|
|
vdi *xsclient.VDI
|
2014-12-29 06:46:54 -06:00
|
|
|
}
|
|
|
|
|
2014-12-31 09:21:54 -06:00
|
|
|
func (self *stepImportInstance) Run(state multistep.StateBag) multistep.StepAction {
|
|
|
|
|
2015-03-13 08:23:20 -05:00
|
|
|
client := state.Get("client").(xsclient.XenAPIClient)
|
2014-12-31 09:21:54 -06:00
|
|
|
config := state.Get("config").(config)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
|
|
|
|
ui.Say("Step: Import Instance")
|
|
|
|
|
|
|
|
// find the SR
|
|
|
|
sr, err := config.GetSR(client)
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(fmt.Sprintf("Unable to get SR: %s", err.Error()))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open the file for reading (NB: httpUpload closes the file for us)
|
|
|
|
fh, err := os.Open(config.SourcePath)
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(fmt.Sprintf("Unable to open XVA '%s': %s", config.SourcePath, err.Error()))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
result, err := xscommon.HTTPUpload(fmt.Sprintf("https://%s/import?session_id=%s&sr_id=%s",
|
|
|
|
client.Host,
|
|
|
|
client.Session.(string),
|
|
|
|
sr.Ref,
|
|
|
|
), fh, state)
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(fmt.Sprintf("Unable to upload VDI: %s", err.Error()))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
if result == nil {
|
|
|
|
ui.Error("XAPI did not reply with an instance reference")
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2015-03-13 08:23:20 -05:00
|
|
|
instance := xsclient.VM(*result)
|
2014-12-29 06:46:54 -06:00
|
|
|
|
2014-12-31 09:21:54 -06:00
|
|
|
instanceId, err := instance.GetUuid()
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(fmt.Sprintf("Unable to get VM UUID: %s", err.Error()))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
state.Put("instance_uuid", instanceId)
|
2015-05-01 19:45:43 -05:00
|
|
|
|
2020-03-24 10:21:35 -05:00
|
|
|
err = instance.SetVCPUsMax(config.VCPUsMax)
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(fmt.Sprintf("Error setting VM VCPUs Max=%d: %s", config.VCPUsMax, err.Error()))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
err = instance.SetVCPUsAtStartup(config.VCPUsAtStartup)
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(fmt.Sprintf("Error setting VM VCPUs At Startup=%d: %s", config.VCPUsAtStartup, err.Error()))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2015-05-01 19:45:43 -05:00
|
|
|
instance.SetDescription(config.VMDescription)
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(fmt.Sprintf("Error setting VM description: %s", err.Error()))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2014-12-31 09:21:54 -06:00
|
|
|
ui.Say(fmt.Sprintf("Imported instance '%s'", instanceId))
|
|
|
|
|
2014-12-29 06:46:54 -06:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2014-12-31 09:21:54 -06:00
|
|
|
func (self *stepImportInstance) Cleanup(state multistep.StateBag) {
|
2014-12-29 06:46:54 -06:00
|
|
|
/*
|
|
|
|
config := state.Get("config").(config)
|
|
|
|
if config.ShouldKeepVM(state) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
|
|
|
|
if self.instance != nil {
|
|
|
|
ui.Say("Destroying VM")
|
|
|
|
_ = self.instance.HardShutdown() // redundant, just in case
|
|
|
|
err := self.instance.Destroy()
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.vdi != nil {
|
|
|
|
ui.Say("Destroying VDI")
|
|
|
|
err := self.vdi.Destroy()
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|