2016-01-11 06:22:41 -05:00
|
|
|
package cloudstack
|
|
|
|
|
|
|
|
import (
|
2019-03-22 09:53:28 -04:00
|
|
|
"context"
|
2017-07-16 02:26:48 -04:00
|
|
|
"fmt"
|
|
|
|
|
2019-12-17 05:25:56 -05:00
|
|
|
"github.com/hashicorp/hcl/v2/hcldec"
|
2020-12-01 18:30:31 -05:00
|
|
|
"github.com/hashicorp/packer/packer-plugin-sdk/communicator"
|
2020-11-17 19:31:03 -05:00
|
|
|
"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
|
|
|
|
"github.com/hashicorp/packer/packer-plugin-sdk/multistep/commonsteps"
|
2020-11-19 14:54:31 -05:00
|
|
|
packersdk "github.com/hashicorp/packer/packer-plugin-sdk/packer"
|
2016-01-11 06:22:41 -05:00
|
|
|
"github.com/xanzy/go-cloudstack/cloudstack"
|
|
|
|
)
|
|
|
|
|
|
|
|
const BuilderId = "packer.cloudstack"
|
|
|
|
|
|
|
|
// Builder represents the CloudStack builder.
|
|
|
|
type Builder struct {
|
2019-12-17 05:25:56 -05:00
|
|
|
config Config
|
2016-01-11 06:22:41 -05:00
|
|
|
runner multistep.Runner
|
2020-11-19 14:54:31 -05:00
|
|
|
ui packersdk.Ui
|
2016-01-11 06:22:41 -05:00
|
|
|
}
|
|
|
|
|
2019-12-17 05:25:56 -05:00
|
|
|
func (b *Builder) ConfigSpec() hcldec.ObjectSpec { return b.config.FlatMapstructure().HCL2Spec() }
|
|
|
|
|
2019-12-17 00:23:05 -05:00
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, []string, error) {
|
2019-12-17 05:25:56 -05:00
|
|
|
errs := b.config.Prepare(raws...)
|
2016-01-11 06:22:41 -05:00
|
|
|
if errs != nil {
|
2019-12-17 00:23:05 -05:00
|
|
|
return nil, nil, errs
|
2016-01-11 06:22:41 -05:00
|
|
|
}
|
|
|
|
|
2019-12-17 00:23:05 -05:00
|
|
|
return nil, nil, nil
|
2016-01-11 06:22:41 -05:00
|
|
|
}
|
|
|
|
|
2020-12-01 16:42:11 -05:00
|
|
|
// Run implements the packersdk.Builder interface.
|
2020-11-19 18:10:00 -05:00
|
|
|
func (b *Builder) Run(ctx context.Context, ui packersdk.Ui, hook packersdk.Hook) (packersdk.Artifact, error) {
|
2016-01-11 06:22:41 -05:00
|
|
|
b.ui = ui
|
|
|
|
|
|
|
|
// Create a CloudStack API client.
|
|
|
|
client := cloudstack.NewAsyncClient(
|
|
|
|
b.config.APIURL,
|
|
|
|
b.config.APIKey,
|
|
|
|
b.config.SecretKey,
|
|
|
|
!b.config.SSLNoVerify,
|
|
|
|
)
|
|
|
|
|
|
|
|
// Set the time to wait before timing out
|
|
|
|
client.AsyncTimeout(int64(b.config.AsyncTimeout.Seconds()))
|
|
|
|
|
|
|
|
// Some CloudStack service providers only allow HTTP GET calls.
|
|
|
|
client.HTTPGETOnly = b.config.HTTPGetOnly
|
|
|
|
|
|
|
|
// Set up the state.
|
|
|
|
state := new(multistep.BasicStateBag)
|
|
|
|
state.Put("client", client)
|
2019-12-19 11:01:55 -05:00
|
|
|
state.Put("config", &b.config)
|
2016-01-11 06:22:41 -05:00
|
|
|
state.Put("hook", hook)
|
|
|
|
state.Put("ui", ui)
|
|
|
|
|
|
|
|
// Build the steps.
|
|
|
|
steps := []multistep.Step{
|
|
|
|
&stepPrepareConfig{},
|
2020-11-11 18:04:28 -05:00
|
|
|
&commonsteps.StepHTTPServer{
|
2017-07-06 05:59:02 -04:00
|
|
|
HTTPDir: b.config.HTTPDir,
|
|
|
|
HTTPPortMin: b.config.HTTPPortMin,
|
|
|
|
HTTPPortMax: b.config.HTTPPortMax,
|
2020-05-27 16:34:24 -04:00
|
|
|
HTTPAddress: b.config.HTTPAddress,
|
2017-07-06 05:59:02 -04:00
|
|
|
},
|
2017-07-16 02:26:48 -04:00
|
|
|
&stepKeypair{
|
2018-08-28 11:47:19 -04:00
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
Comm: &b.config.Comm,
|
|
|
|
DebugKeyPath: fmt.Sprintf("cs_%s.pem", b.config.PackerBuildName),
|
2017-07-16 02:26:48 -04:00
|
|
|
},
|
2017-07-18 03:08:11 -04:00
|
|
|
&stepCreateSecurityGroup{},
|
2017-07-06 05:59:02 -04:00
|
|
|
&stepCreateInstance{
|
2017-07-18 15:05:27 -04:00
|
|
|
Ctx: b.config.ctx,
|
2017-07-26 15:34:11 -04:00
|
|
|
Debug: b.config.PackerDebug,
|
2017-07-06 05:59:02 -04:00
|
|
|
},
|
2016-01-11 06:22:41 -05:00
|
|
|
&stepSetupNetworking{},
|
2019-09-12 19:35:14 -04:00
|
|
|
&stepDetachIso{},
|
2016-01-11 06:22:41 -05:00
|
|
|
&communicator.StepConnect{
|
2018-08-22 11:02:23 -04:00
|
|
|
Config: &b.config.Comm,
|
2020-01-30 18:22:22 -05:00
|
|
|
Host: communicator.CommHost(b.config.Comm.Host(), "ipaddress"),
|
2018-08-22 11:02:23 -04:00
|
|
|
SSHConfig: b.config.Comm.SSHConfigFunc(),
|
2017-07-17 03:05:12 -04:00
|
|
|
SSHPort: commPort,
|
|
|
|
WinRMPort: commPort,
|
2016-01-11 06:22:41 -05:00
|
|
|
},
|
2020-11-11 18:04:28 -05:00
|
|
|
&commonsteps.StepProvision{},
|
|
|
|
&commonsteps.StepCleanupTempKeys{
|
2018-09-14 14:03:23 -04:00
|
|
|
Comm: &b.config.Comm,
|
|
|
|
},
|
2016-01-11 06:22:41 -05:00
|
|
|
&stepShutdownInstance{},
|
|
|
|
&stepCreateTemplate{},
|
|
|
|
}
|
|
|
|
|
2017-08-31 13:43:00 -04:00
|
|
|
// Configure the runner and run the steps.
|
2020-11-11 18:04:28 -05:00
|
|
|
b.runner = commonsteps.NewRunner(steps, b.config.PackerConfig, ui)
|
2019-03-22 09:53:28 -04:00
|
|
|
b.runner.Run(ctx, state)
|
2016-01-11 06:22:41 -05:00
|
|
|
|
2017-07-06 17:31:13 -04:00
|
|
|
// If there was an error, return that
|
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
|
|
|
ui.Error(rawErr.(error).Error())
|
|
|
|
return nil, rawErr.(error)
|
2016-01-11 06:22:41 -05:00
|
|
|
}
|
|
|
|
|
2017-09-26 16:36:53 -04:00
|
|
|
// If there was no template created, just return
|
|
|
|
if _, ok := state.GetOk("template"); !ok {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2016-01-11 06:22:41 -05:00
|
|
|
// Build the artifact and return it
|
|
|
|
artifact := &Artifact{
|
2020-01-30 05:27:58 -05:00
|
|
|
client: client,
|
|
|
|
config: &b.config,
|
|
|
|
template: state.Get("template").(*cloudstack.CreateTemplateResponse),
|
|
|
|
StateData: map[string]interface{}{"generated_data": state.Get("generated_data")},
|
2016-01-11 06:22:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return artifact, nil
|
|
|
|
}
|