packer-cn/builder/vsphere/iso/step_create.go

118 lines
3.3 KiB
Go
Raw Normal View History

package iso
import (
2018-10-31 17:42:24 -04:00
"context"
"fmt"
2018-10-31 17:42:24 -04:00
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer"
"github.com/jetbrains-infra/packer-builder-vsphere/common"
"github.com/jetbrains-infra/packer-builder-vsphere/driver"
)
type CreateConfig struct {
2018-05-06 17:26:04 -04:00
Version uint `mapstructure:"vm_version"`
GuestOSType string `mapstructure:"guest_os_type"`
Firmware string `mapstructure:"firmware"`
DiskControllerType string `mapstructure:"disk_controller_type"`
2018-05-05 17:41:14 -04:00
DiskSize int64 `mapstructure:"disk_size"`
2018-05-06 17:26:04 -04:00
DiskThinProvisioned bool `mapstructure:"disk_thin_provisioned"`
2018-02-26 19:22:52 -05:00
Network string `mapstructure:"network"`
NetworkCard string `mapstructure:"network_card"`
USBController bool `mapstructure:"usb_controller"`
2018-11-08 11:50:52 -05:00
Notes string `mapstructure:"notes"`
}
func (c *CreateConfig) Prepare() []error {
var errs []error
2018-05-06 17:26:04 -04:00
if c.DiskSize == 0 {
errs = append(errs, fmt.Errorf("'disk_size' is required"))
}
2018-05-06 17:26:04 -04:00
if c.GuestOSType == "" {
c.GuestOSType = "otherGuest"
2018-05-05 17:41:14 -04:00
}
2018-10-31 17:42:24 -04:00
if c.Firmware != "" && c.Firmware != "bios" && c.Firmware != "efi" {
2018-10-16 19:15:27 -04:00
errs = append(errs, fmt.Errorf("'firmware' must be 'bios' or 'efi'"))
}
2018-05-06 17:26:04 -04:00
return errs
}
type StepCreateVM struct {
2018-05-06 17:26:04 -04:00
Config *CreateConfig
Location *common.LocationConfig
Force bool
}
2018-04-25 07:22:38 -04:00
func (s *StepCreateVM) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
ui := state.Get("ui").(packer.Ui)
d := state.Get("driver").(*driver.Driver)
2019-07-08 10:48:37 -04:00
vm, err := d.FindVM(s.Location.VMName)
if s.Force == false && err == nil {
state.Put("error", fmt.Errorf("%s already exists, you can use -force flag to destroy it: %v", s.Location.VMName, err))
return multistep.ActionHalt
} else if s.Force == true && err == nil {
ui.Say(fmt.Sprintf("the vm/template %s already exists, but deleting it due to -force flag", s.Location.VMName))
2019-07-08 10:48:37 -04:00
err := vm.Destroy()
if err != nil {
state.Put("error", fmt.Errorf("error destroying %s: %v", s.Location.VMName, err))
}
}
ui.Say("Creating VM...")
2019-07-08 10:48:37 -04:00
vm, err = d.CreateVM(&driver.CreateConfig{
DiskThinProvisioned: s.Config.DiskThinProvisioned,
DiskControllerType: s.Config.DiskControllerType,
2018-05-05 17:41:14 -04:00
DiskSize: s.Config.DiskSize,
2018-05-06 17:26:04 -04:00
Name: s.Location.VMName,
Folder: s.Location.Folder,
Cluster: s.Location.Cluster,
Host: s.Location.Host,
ResourcePool: s.Location.ResourcePool,
Datastore: s.Location.Datastore,
GuestOS: s.Config.GuestOSType,
Network: s.Config.Network,
NetworkCard: s.Config.NetworkCard,
2018-02-26 19:22:52 -05:00
USBController: s.Config.USBController,
Version: s.Config.Version,
Firmware: s.Config.Firmware,
2018-11-08 11:50:52 -05:00
Annotation: s.Config.Notes,
})
if err != nil {
state.Put("error", fmt.Errorf("error creating vm: %v", err))
return multistep.ActionHalt
}
state.Put("vm", vm)
2018-05-06 17:26:04 -04:00
return multistep.ActionContinue
}
func (s *StepCreateVM) Cleanup(state multistep.StateBag) {
_, cancelled := state.GetOk(multistep.StateCancelled)
_, halted := state.GetOk(multistep.StateHalted)
if !cancelled && !halted {
return
}
ui := state.Get("ui").(packer.Ui)
st := state.Get("vm")
if st == nil {
return
}
vm := st.(*driver.VirtualMachine)
ui.Say("Destroying VM...")
err := vm.Destroy()
if err != nil {
ui.Error(err.Error())
}
}