2020-01-07 19:59:31 -05:00
|
|
|
//go:generate struct-markdown
|
|
|
|
//go:generate mapstructure-to-hcl2 -type CloneConfig
|
|
|
|
|
2018-01-24 06:04:39 -05:00
|
|
|
package clone
|
2017-05-09 10:23:57 -04:00
|
|
|
|
|
|
|
import (
|
2018-10-31 17:42:24 -04:00
|
|
|
"context"
|
|
|
|
"fmt"
|
2020-04-23 08:07:07 -04:00
|
|
|
"path"
|
2020-02-14 11:42:29 -05:00
|
|
|
|
2020-01-07 19:59:31 -05:00
|
|
|
"github.com/hashicorp/packer/builder/vsphere/common"
|
|
|
|
"github.com/hashicorp/packer/builder/vsphere/driver"
|
2018-04-25 07:22:38 -04:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-05-09 10:23:57 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
)
|
|
|
|
|
2017-07-01 20:52:10 -04:00
|
|
|
type CloneConfig struct {
|
2020-01-07 19:59:31 -05:00
|
|
|
// Name of source VM. Path is optional.
|
|
|
|
Template string `mapstructure:"template"`
|
|
|
|
// The size of the disk in MB.
|
|
|
|
DiskSize int64 `mapstructure:"disk_size"`
|
|
|
|
// Create VM as a linked clone from latest snapshot. Defaults to `false`.
|
|
|
|
LinkedClone bool `mapstructure:"linked_clone"`
|
|
|
|
// Set network VM will be connected to.
|
|
|
|
Network string `mapstructure:"network"`
|
|
|
|
// VM notes.
|
|
|
|
Notes string `mapstructure:"notes"`
|
2017-07-01 20:52:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *CloneConfig) Prepare() []error {
|
2018-05-06 17:26:04 -04:00
|
|
|
var errs []error
|
2017-07-01 20:52:10 -04:00
|
|
|
|
|
|
|
if c.Template == "" {
|
2018-05-06 17:26:04 -04:00
|
|
|
errs = append(errs, fmt.Errorf("'template' is required"))
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.LinkedClone == true && c.DiskSize != 0 {
|
|
|
|
errs = append(errs, fmt.Errorf("'linked_clone' and 'disk_size' cannot be used together"))
|
2017-07-01 20:52:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return errs
|
|
|
|
}
|
|
|
|
|
2017-06-27 23:04:25 -04:00
|
|
|
type StepCloneVM struct {
|
2018-05-06 17:26:04 -04:00
|
|
|
Config *CloneConfig
|
|
|
|
Location *common.LocationConfig
|
2018-11-16 10:37:54 -05:00
|
|
|
Force bool
|
2017-05-09 10:23:57 -04:00
|
|
|
}
|
|
|
|
|
2018-05-16 09:05:08 -04:00
|
|
|
func (s *StepCloneVM) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
2017-05-09 10:23:57 -04:00
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2017-08-23 15:40:57 -04:00
|
|
|
d := state.Get("driver").(*driver.Driver)
|
2020-04-23 08:07:07 -04:00
|
|
|
vmPath := path.Join(s.Location.Folder, s.Location.VMName)
|
2017-07-01 20:52:10 -04:00
|
|
|
|
2020-04-23 08:07:07 -04:00
|
|
|
err := d.PreCleanVM(ui, vmPath, s.Force)
|
|
|
|
if err != nil {
|
|
|
|
state.Put("error", err)
|
2018-11-16 10:37:54 -05:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
ui.Say("Cloning VM...")
|
2018-05-06 17:26:04 -04:00
|
|
|
template, err := d.FindVM(s.Config.Template)
|
2017-08-23 20:06:50 -04:00
|
|
|
if err != nil {
|
|
|
|
state.Put("error", err)
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2020-04-23 08:07:07 -04:00
|
|
|
vm, err := template.Clone(ctx, &driver.CloneConfig{
|
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,
|
|
|
|
LinkedClone: s.Config.LinkedClone,
|
2019-03-13 16:07:30 -04:00
|
|
|
Network: s.Config.Network,
|
2018-11-08 11:50:52 -05:00
|
|
|
Annotation: s.Config.Notes,
|
2017-08-23 15:40:57 -04:00
|
|
|
})
|
2017-05-09 10:23:57 -04:00
|
|
|
if err != nil {
|
|
|
|
state.Put("error", err)
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2018-05-16 09:05:08 -04:00
|
|
|
if vm == nil {
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2017-05-09 10:23:57 -04:00
|
|
|
state.Put("vm", vm)
|
2018-05-05 17:41:14 -04:00
|
|
|
|
2018-05-06 17:26:04 -04:00
|
|
|
if s.Config.DiskSize > 0 {
|
|
|
|
err = vm.ResizeDisk(s.Config.DiskSize)
|
2018-05-05 17:41:14 -04:00
|
|
|
if err != nil {
|
|
|
|
state.Put("error", err)
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-09 10:23:57 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StepCloneVM) Cleanup(state multistep.StateBag) {
|
|
|
|
_, cancelled := state.GetOk(multistep.StateCancelled)
|
|
|
|
_, halted := state.GetOk(multistep.StateHalted)
|
2017-07-01 20:52:10 -04:00
|
|
|
if !cancelled && !halted {
|
|
|
|
return
|
|
|
|
}
|
2017-05-09 10:23:57 -04:00
|
|
|
|
2017-08-23 20:06:50 -04:00
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2017-08-24 14:54:01 -04:00
|
|
|
|
|
|
|
st := state.Get("vm")
|
|
|
|
if st == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
vm := st.(*driver.VirtualMachine)
|
2017-05-09 10:23:57 -04:00
|
|
|
|
2017-08-23 20:06:50 -04:00
|
|
|
ui.Say("Destroying VM...")
|
2017-05-09 10:23:57 -04:00
|
|
|
|
2017-08-23 20:06:50 -04:00
|
|
|
err := vm.Destroy()
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(err.Error())
|
2017-05-09 10:23:57 -04:00
|
|
|
}
|
|
|
|
}
|