2016-06-29 04:35:41 +02:00
|
|
|
package profitbricks
|
|
|
|
|
|
|
|
import (
|
2019-03-22 14:53:28 +01:00
|
|
|
"context"
|
2016-06-29 04:35:41 +02:00
|
|
|
"fmt"
|
2018-01-22 17:21:10 -08:00
|
|
|
|
2019-12-17 11:25:56 +01:00
|
|
|
"github.com/hashicorp/hcl/v2/hcldec"
|
2020-12-17 13:29:25 -08:00
|
|
|
"github.com/hashicorp/packer-plugin-sdk/communicator"
|
|
|
|
"github.com/hashicorp/packer-plugin-sdk/multistep"
|
|
|
|
"github.com/hashicorp/packer-plugin-sdk/multistep/commonsteps"
|
|
|
|
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
|
2016-06-29 04:35:41 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const BuilderId = "packer.profitbricks"
|
|
|
|
|
|
|
|
type Builder struct {
|
2019-12-17 11:25:56 +01:00
|
|
|
config Config
|
2016-06-29 04:35:41 +02:00
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
2019-12-17 11:25:56 +01:00
|
|
|
func (b *Builder) ConfigSpec() hcldec.ObjectSpec { return b.config.FlatMapstructure().HCL2Spec() }
|
|
|
|
|
2019-12-16 21:23:05 -08:00
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, []string, error) {
|
2019-12-17 11:25:56 +01:00
|
|
|
warnings, errs := b.config.Prepare(raws...)
|
2016-06-29 04:35:41 +02:00
|
|
|
if errs != nil {
|
2019-12-16 21:23:05 -08:00
|
|
|
return nil, warnings, errs
|
2016-06-29 04:35:41 +02:00
|
|
|
}
|
|
|
|
|
2019-12-16 21:23:05 -08:00
|
|
|
return nil, warnings, nil
|
2016-06-29 04:35:41 +02:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:10:00 -08:00
|
|
|
func (b *Builder) Run(ctx context.Context, ui packersdk.Ui, hook packersdk.Hook) (packersdk.Artifact, error) {
|
2016-11-16 00:17:30 +01:00
|
|
|
state := new(multistep.BasicStateBag)
|
2016-06-29 04:35:41 +02:00
|
|
|
|
2019-12-19 17:01:55 +01:00
|
|
|
state.Put("config", &b.config)
|
2016-11-16 00:17:30 +01:00
|
|
|
state.Put("hook", hook)
|
|
|
|
state.Put("ui", ui)
|
2016-06-29 04:35:41 +02:00
|
|
|
steps := []multistep.Step{
|
|
|
|
&StepCreateSSHKey{
|
|
|
|
Debug: b.config.PackerDebug,
|
2016-07-07 10:28:46 +02:00
|
|
|
DebugKeyPath: fmt.Sprintf("pb_%s", b.config.SnapshotName),
|
2016-06-29 04:35:41 +02:00
|
|
|
},
|
|
|
|
new(stepCreateServer),
|
|
|
|
&communicator.StepConnect{
|
|
|
|
Config: &b.config.Comm,
|
2020-01-30 15:22:22 -08:00
|
|
|
Host: communicator.CommHost(b.config.Comm.Host(), "server_ip"),
|
2018-08-22 17:02:23 +02:00
|
|
|
SSHConfig: b.config.Comm.SSHConfigFunc(),
|
2016-06-29 04:35:41 +02:00
|
|
|
},
|
2020-11-11 15:04:28 -08:00
|
|
|
&commonsteps.StepProvision{},
|
|
|
|
&commonsteps.StepCleanupTempKeys{
|
2018-09-14 11:03:23 -07:00
|
|
|
Comm: &b.config.Comm,
|
|
|
|
},
|
2016-06-29 04:35:41 +02:00
|
|
|
new(stepTakeSnapshot),
|
|
|
|
}
|
|
|
|
|
2016-08-01 13:09:07 +02:00
|
|
|
config := state.Get("config").(*Config)
|
2016-06-29 04:35:41 +02:00
|
|
|
|
2020-11-11 15:04:28 -08:00
|
|
|
b.runner = commonsteps.NewRunner(steps, b.config.PackerConfig, ui)
|
2019-03-22 14:53:28 +01:00
|
|
|
b.runner.Run(ctx, state)
|
2016-06-29 04:35:41 +02:00
|
|
|
|
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
|
|
|
artifact := &Artifact{
|
2016-08-01 13:09:07 +02:00
|
|
|
snapshotData: config.SnapshotName,
|
2020-01-30 11:27:58 +01:00
|
|
|
StateData: map[string]interface{}{"generated_data": state.Get("generated_data")},
|
2016-06-29 04:35:41 +02:00
|
|
|
}
|
|
|
|
return artifact, nil
|
|
|
|
}
|