2018-01-24 06:04:39 -05:00
|
|
|
package clone
|
2017-05-09 10:23:57 -04:00
|
|
|
|
|
|
|
import (
|
2019-05-25 01:45:53 -04:00
|
|
|
"context"
|
2020-07-08 04:33:45 -04:00
|
|
|
"fmt"
|
2020-02-14 11:42:29 -05:00
|
|
|
|
2020-01-08 13:22:55 -05:00
|
|
|
"github.com/hashicorp/hcl/v2/hcldec"
|
2020-01-07 19:59:31 -05:00
|
|
|
"github.com/hashicorp/packer/builder/vsphere/common"
|
|
|
|
"github.com/hashicorp/packer/builder/vsphere/driver"
|
2018-01-24 06:04:39 -05:00
|
|
|
packerCommon "github.com/hashicorp/packer/common"
|
2018-10-31 17:42:24 -04:00
|
|
|
"github.com/hashicorp/packer/helper/communicator"
|
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-08-25 01:08:08 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2017-05-09 10:23:57 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type Builder struct {
|
2020-01-13 15:33:56 -05:00
|
|
|
config Config
|
2017-05-09 10:23:57 -04:00
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
2020-01-08 13:22:55 -05:00
|
|
|
func (b *Builder) ConfigSpec() hcldec.ObjectSpec { return b.config.FlatMapstructure().HCL2Spec() }
|
|
|
|
|
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, []string, error) {
|
2020-01-13 18:52:05 -05:00
|
|
|
warnings, errs := b.config.Prepare(raws...)
|
2017-05-09 10:23:57 -04:00
|
|
|
if errs != nil {
|
2020-01-13 18:52:05 -05:00
|
|
|
return nil, warnings, errs
|
2017-05-09 10:23:57 -04:00
|
|
|
}
|
|
|
|
|
2020-01-13 18:52:05 -05:00
|
|
|
return nil, warnings, nil
|
2017-05-09 10:23:57 -04:00
|
|
|
}
|
|
|
|
|
2019-05-25 01:45:53 -04:00
|
|
|
func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (packer.Artifact, error) {
|
2017-05-09 10:23:57 -04:00
|
|
|
state := new(multistep.BasicStateBag)
|
2020-06-24 05:14:30 -04:00
|
|
|
state.Put("debug", b.config.PackerDebug)
|
2017-05-09 10:23:57 -04:00
|
|
|
state.Put("hook", hook)
|
|
|
|
state.Put("ui", ui)
|
|
|
|
|
2018-01-16 08:16:08 -05:00
|
|
|
var steps []multistep.Step
|
|
|
|
|
|
|
|
steps = append(steps,
|
2018-01-24 06:04:39 -05:00
|
|
|
&common.StepConnect{
|
|
|
|
Config: &b.config.ConnectConfig,
|
2017-07-01 20:52:10 -04:00
|
|
|
},
|
2017-05-19 00:44:27 -04:00
|
|
|
&StepCloneVM{
|
2018-05-06 17:26:04 -04:00
|
|
|
Config: &b.config.CloneConfig,
|
|
|
|
Location: &b.config.LocationConfig,
|
2018-11-16 10:37:54 -05:00
|
|
|
Force: b.config.PackerConfig.PackerForce,
|
2017-05-09 10:23:57 -04:00
|
|
|
},
|
2018-05-05 17:41:14 -04:00
|
|
|
&common.StepConfigureHardware{
|
|
|
|
Config: &b.config.HardwareConfig,
|
2017-05-09 10:23:57 -04:00
|
|
|
},
|
2018-05-04 18:48:16 -04:00
|
|
|
&common.StepConfigParams{
|
|
|
|
Config: &b.config.ConfigParamsConfig,
|
|
|
|
},
|
2018-01-16 08:16:08 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
if b.config.Comm.Type != "none" {
|
|
|
|
steps = append(steps,
|
2020-06-24 05:14:30 -04:00
|
|
|
&common.StepHTTPIPDiscover{
|
|
|
|
HTTPIP: b.config.BootConfig.HTTPIP,
|
|
|
|
Network: b.config.WaitIpConfig.GetIPNet(),
|
|
|
|
},
|
|
|
|
&packerCommon.StepHTTPServer{
|
|
|
|
HTTPDir: b.config.HTTPDir,
|
|
|
|
HTTPPortMin: b.config.HTTPPortMin,
|
|
|
|
HTTPPortMax: b.config.HTTPPortMax,
|
|
|
|
HTTPAddress: b.config.HTTPAddress,
|
|
|
|
},
|
2020-07-08 04:33:45 -04:00
|
|
|
&common.StepSshKeyPair{
|
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
DebugKeyPath: fmt.Sprintf("%s.pem", b.config.PackerBuildName),
|
|
|
|
Comm: &b.config.Comm,
|
|
|
|
},
|
2018-01-30 12:25:05 -05:00
|
|
|
&common.StepRun{
|
2018-10-31 17:42:24 -04:00
|
|
|
Config: &b.config.RunConfig,
|
2018-10-20 20:57:28 -04:00
|
|
|
SetOrder: false,
|
2018-01-30 12:25:05 -05:00
|
|
|
},
|
2020-06-24 05:14:30 -04:00
|
|
|
&common.StepBootCommand{
|
|
|
|
Config: &b.config.BootConfig,
|
|
|
|
Ctx: b.config.ctx,
|
|
|
|
VMName: b.config.VMName,
|
|
|
|
},
|
2018-05-30 07:52:27 -04:00
|
|
|
&common.StepWaitForIp{
|
2019-07-08 10:48:37 -04:00
|
|
|
Config: &b.config.WaitIpConfig,
|
2018-05-30 07:52:27 -04:00
|
|
|
},
|
2018-01-16 08:16:08 -05:00
|
|
|
&communicator.StepConnect{
|
|
|
|
Config: &b.config.Comm,
|
2020-01-30 18:22:22 -05:00
|
|
|
Host: common.CommHost(b.config.Comm.Host()),
|
2019-07-08 11:40:01 -04:00
|
|
|
SSHConfig: b.config.Comm.SSHConfigFunc(),
|
2018-01-16 08:16:08 -05:00
|
|
|
},
|
2018-01-24 06:04:39 -05:00
|
|
|
&packerCommon.StepProvision{},
|
|
|
|
&common.StepShutdown{
|
|
|
|
Config: &b.config.ShutdownConfig,
|
2018-01-16 08:16:08 -05:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
steps = append(steps,
|
2018-01-24 06:04:39 -05:00
|
|
|
&common.StepCreateSnapshot{
|
|
|
|
CreateSnapshot: b.config.CreateSnapshot,
|
2017-06-27 03:32:59 -04:00
|
|
|
},
|
2018-01-24 06:04:39 -05:00
|
|
|
&common.StepConvertToTemplate{
|
2017-06-27 03:32:59 -04:00
|
|
|
ConvertToTemplate: b.config.ConvertToTemplate,
|
2017-05-09 10:23:57 -04:00
|
|
|
},
|
2018-01-16 08:16:08 -05:00
|
|
|
)
|
2017-05-09 10:23:57 -04:00
|
|
|
|
2020-07-10 05:01:10 -04:00
|
|
|
if b.config.ContentLibraryDestinationConfig != nil {
|
|
|
|
steps = append(steps, &common.StepImportToContentLibrary{
|
|
|
|
ContentLibConfig: b.config.ContentLibraryDestinationConfig,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-03-19 13:51:43 -04:00
|
|
|
if b.config.Export != nil {
|
|
|
|
steps = append(steps, &common.StepExport{
|
|
|
|
Name: b.config.Export.Name,
|
|
|
|
Force: b.config.Export.Force,
|
|
|
|
Images: b.config.Export.Images,
|
|
|
|
Manifest: b.config.Export.Manifest,
|
|
|
|
OutputDir: b.config.Export.OutputDir.OutputDir,
|
|
|
|
Options: b.config.Export.Options,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-06-24 05:14:30 -04:00
|
|
|
b.runner = packerCommon.NewRunnerWithPauseFn(steps, b.config.PackerConfig, ui, state)
|
2019-05-25 01:45:53 -04:00
|
|
|
b.runner.Run(ctx, state)
|
2017-05-09 10:23:57 -04:00
|
|
|
|
2018-05-06 17:26:04 -04:00
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
|
|
|
return nil, rawErr.(error)
|
2017-05-09 10:23:57 -04:00
|
|
|
}
|
|
|
|
|
2018-05-06 17:26:04 -04:00
|
|
|
if _, ok := state.GetOk("vm"); !ok {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2018-01-24 06:04:39 -05:00
|
|
|
artifact := &common.Artifact{
|
2020-01-30 05:27:58 -05:00
|
|
|
Name: b.config.VMName,
|
|
|
|
VM: state.Get("vm").(*driver.VirtualMachine),
|
|
|
|
StateData: map[string]interface{}{"generated_data": state.Get("generated_data")},
|
2017-05-09 10:23:57 -04:00
|
|
|
}
|
2020-04-30 15:22:57 -04:00
|
|
|
if b.config.Export != nil {
|
|
|
|
artifact.Outconfig = &b.config.Export.OutputDir
|
|
|
|
}
|
|
|
|
|
2017-05-09 10:23:57 -04:00
|
|
|
return artifact, nil
|
|
|
|
}
|