Files
Packer-Cn/builder/vsphere/iso/builder.go
T

176 lines
4.4 KiB
Go
Raw Normal View History

2018-01-24 17:56:14 +03:00
package iso
import (
2019-05-25 00:45:53 -05:00
"context"
2020-01-13 15:52:05 -08:00
"github.com/hashicorp/hcl/v2/hcldec"
"github.com/hashicorp/packer/builder/vsphere/common"
"github.com/hashicorp/packer/builder/vsphere/driver"
2018-01-24 17:56:14 +03:00
packerCommon "github.com/hashicorp/packer/common"
2018-11-01 00:42:24 +03:00
"github.com/hashicorp/packer/helper/communicator"
"github.com/hashicorp/packer/helper/multistep"
2018-01-24 17:56:14 +03:00
"github.com/hashicorp/packer/packer"
)
type Builder struct {
config Config
2018-01-24 17:56:14 +03:00
runner multistep.Runner
}
func (b *Builder) ConfigSpec() hcldec.ObjectSpec { return b.config.FlatMapstructure().HCL2Spec() }
func (b *Builder) Prepare(raws ...interface{}) ([]string, []string, error) {
2020-01-13 15:52:05 -08:00
warnings, errs := b.config.Prepare(raws...)
2018-01-24 17:56:14 +03:00
if errs != nil {
2020-01-13 15:52:05 -08:00
return nil, warnings, errs
2018-01-24 17:56:14 +03:00
}
2020-01-13 15:52:05 -08:00
return nil, warnings, nil
2018-01-24 17:56:14 +03:00
}
2019-05-25 00:45:53 -05:00
func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (packer.Artifact, error) {
2018-01-24 17:56:14 +03:00
state := new(multistep.BasicStateBag)
state.Put("debug", b.config.PackerDebug)
2018-01-24 17:56:14 +03:00
state.Put("hook", hook)
state.Put("ui", ui)
var steps []multistep.Step
2018-01-24 17:56:14 +03:00
steps = append(steps,
&common.StepConnect{
Config: &b.config.ConnectConfig,
},
)
if b.config.ISOUrls != nil {
steps = append(steps,
&packerCommon.StepDownload{
Checksum: b.config.ISOChecksum,
Description: "ISO",
Extension: b.config.TargetExtension,
ResultKey: "iso_path",
TargetPath: b.config.TargetPath,
Url: b.config.ISOUrls,
},
&StepRemoteUpload{
2020-05-05 14:34:15 -04:00
Datastore: b.config.Datastore,
Host: b.config.Host,
SetHostForDatastoreUploads: b.config.SetHostForDatastoreUploads,
},
)
}
steps = append(steps,
2018-01-24 17:56:14 +03:00
&StepCreateVM{
2018-05-07 00:26:04 +03:00
Config: &b.config.CreateConfig,
Location: &b.config.LocationConfig,
Force: b.config.PackerConfig.PackerForce,
2018-01-24 17:56:14 +03:00
},
2018-05-06 00:41:14 +03:00
&common.StepConfigureHardware{
Config: &b.config.HardwareConfig,
},
&StepAddCDRom{
Config: &b.config.CDRomConfig,
},
2018-05-05 01:48:16 +03:00
&common.StepConfigParams{
Config: &b.config.ConfigParamsConfig,
2018-02-27 00:18:06 +03:00
},
2018-01-24 17:56:14 +03:00
)
if b.config.Comm.Type != "none" {
steps = append(steps,
&packerCommon.StepCreateFloppy{
Files: b.config.FloppyFiles,
Directories: b.config.FloppyDirectories,
Label: b.config.FloppyLabel,
},
&StepAddFloppy{
2020-05-05 14:34:15 -04:00
Config: &b.config.FloppyConfig,
Datastore: b.config.Datastore,
Host: b.config.Host,
SetHostForDatastoreUploads: b.config.SetHostForDatastoreUploads,
},
&common.StepHTTPIPDiscover{
HTTPIP: b.config.BootConfig.HTTPIP,
},
2018-05-30 13:59:44 +02:00
&packerCommon.StepHTTPServer{
HTTPDir: b.config.HTTPDir,
HTTPPortMin: b.config.HTTPPortMin,
HTTPPortMax: b.config.HTTPPortMax,
HTTPAddress: b.config.HTTPAddress,
2018-05-30 13:59:44 +02:00
},
2018-01-30 20:25:05 +03:00
&common.StepRun{
2018-11-01 00:42:24 +03:00
Config: &b.config.RunConfig,
SetOrder: true,
2018-01-30 20:25:05 +03:00
},
2018-02-18 05:13:56 +03:00
&StepBootCommand{
Config: &b.config.BootConfig,
2018-12-23 02:13:31 +03:00
Ctx: b.config.ctx,
VMName: b.config.VMName,
2018-02-18 05:13:56 +03:00
},
2018-05-30 14:52:27 +03:00
&common.StepWaitForIp{
Config: &b.config.WaitIpConfig,
},
&communicator.StepConnect{
Config: &b.config.Comm,
Host: common.CommHost(b.config.Comm.Host()),
SSHConfig: b.config.Comm.SSHConfigFunc(),
},
&packerCommon.StepProvision{},
&common.StepShutdown{
Config: &b.config.ShutdownConfig,
},
&StepRemoveFloppy{
Datastore: b.config.Datastore,
Host: b.config.Host,
},
)
}
steps = append(steps,
2020-02-05 15:25:49 +00:00
&StepRemoveCDRom{
Config: &b.config.RemoveCDRomConfig,
},
&common.StepCreateSnapshot{
CreateSnapshot: b.config.CreateSnapshot,
},
&common.StepConvertToTemplate{
ConvertToTemplate: b.config.ConvertToTemplate,
},
)
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,
})
}
2018-01-24 17:56:14 +03:00
b.runner = packerCommon.NewRunner(steps, b.config.PackerConfig, ui)
2019-05-25 00:45:53 -05:00
b.runner.Run(ctx, state)
2018-01-24 17:56:14 +03:00
2018-05-07 00:26:04 +03:00
if rawErr, ok := state.GetOk("error"); ok {
return nil, rawErr.(error)
2018-01-24 17:56:14 +03:00
}
2018-05-07 00:26:04 +03:00
if _, ok := state.GetOk("vm"); !ok {
return nil, nil
}
2018-01-24 17:56:14 +03:00
artifact := &common.Artifact{
Name: b.config.VMName,
VM: state.Get("vm").(*driver.VirtualMachine),
StateData: map[string]interface{}{"generated_data": state.Get("generated_data")},
2018-01-24 17:56:14 +03:00
}
if b.config.Export != nil {
artifact.Outconfig = &b.config.Export.OutputDir
}
2018-01-24 17:56:14 +03:00
return artifact, nil
}