2016-11-13 17:34:36 -05:00
|
|
|
package oneandone
|
|
|
|
|
|
|
|
import (
|
2019-03-22 09:53:28 -04:00
|
|
|
"context"
|
2016-11-15 18:17:30 -05:00
|
|
|
"errors"
|
2016-11-13 17:34:36 -05:00
|
|
|
"fmt"
|
2018-01-22 20:21:10 -05:00
|
|
|
|
2019-12-17 05:25:56 -05:00
|
|
|
"github.com/hashicorp/hcl/v2/hcldec"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/common"
|
|
|
|
"github.com/hashicorp/packer/helper/communicator"
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2016-11-13 17:34:36 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
const BuilderId = "packer.oneandone"
|
|
|
|
|
|
|
|
type Builder struct {
|
2019-12-17 05:25:56 -05:00
|
|
|
config Config
|
2016-11-13 17:34:36 -05:00
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
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
|
|
|
warnings, errs := b.config.Prepare(raws...)
|
2016-11-13 17:34:36 -05:00
|
|
|
if errs != nil {
|
2019-12-17 00:23:05 -05:00
|
|
|
return nil, warnings, errs
|
2016-11-13 17:34:36 -05:00
|
|
|
}
|
|
|
|
|
2019-12-17 00:23:05 -05:00
|
|
|
return nil, warnings, nil
|
2016-11-13 17:34:36 -05:00
|
|
|
}
|
|
|
|
|
2019-03-22 09:53:28 -04:00
|
|
|
func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (packer.Artifact, error) {
|
2016-11-13 17:34:36 -05:00
|
|
|
|
2016-11-15 18:17:30 -05:00
|
|
|
state := new(multistep.BasicStateBag)
|
|
|
|
|
2019-12-19 11:01:55 -05:00
|
|
|
state.Put("config", &b.config)
|
2016-11-15 18:17:30 -05:00
|
|
|
state.Put("hook", hook)
|
|
|
|
state.Put("ui", ui)
|
|
|
|
|
2016-11-13 17:34:36 -05:00
|
|
|
steps := []multistep.Step{
|
|
|
|
&StepCreateSSHKey{
|
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
DebugKeyPath: fmt.Sprintf("oneandone_%s", b.config.SnapshotName),
|
|
|
|
},
|
|
|
|
new(stepCreateServer),
|
|
|
|
&communicator.StepConnect{
|
|
|
|
Config: &b.config.Comm,
|
2019-07-03 16:30:29 -04:00
|
|
|
Host: communicator.CommHost(b.config.Comm.SSHHost, "server_ip"),
|
2018-08-22 11:02:23 -04:00
|
|
|
SSHConfig: b.config.Comm.SSHConfigFunc(),
|
2016-11-13 17:34:36 -05:00
|
|
|
},
|
|
|
|
&common.StepProvision{},
|
2018-09-14 14:03:23 -04:00
|
|
|
&common.StepCleanupTempKeys{
|
|
|
|
Comm: &b.config.Comm,
|
|
|
|
},
|
2016-11-13 17:34:36 -05:00
|
|
|
new(stepTakeSnapshot),
|
|
|
|
}
|
|
|
|
|
2017-08-31 13:43:00 -04:00
|
|
|
b.runner = common.NewRunner(steps, b.config.PackerConfig, ui)
|
2019-03-22 09:53:28 -04:00
|
|
|
b.runner.Run(ctx, state)
|
2016-11-13 17:34:36 -05:00
|
|
|
|
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
2016-11-15 18:17:30 -05:00
|
|
|
if temp, ok := state.GetOk("snapshot_name"); ok {
|
|
|
|
b.config.SnapshotName = temp.(string)
|
|
|
|
}
|
2016-11-13 17:34:36 -05:00
|
|
|
|
|
|
|
artifact := &Artifact{
|
2016-11-15 18:17:30 -05:00
|
|
|
snapshotName: b.config.SnapshotName,
|
2020-01-30 05:27:58 -05:00
|
|
|
StateData: map[string]interface{}{"generated_data": state.Get("generated_data")},
|
2016-11-15 18:17:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if id, ok := state.GetOk("snapshot_id"); ok {
|
|
|
|
artifact.snapshotId = id.(string)
|
|
|
|
} else {
|
|
|
|
return nil, errors.New("Image creation has failed.")
|
2016-11-13 17:34:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return artifact, nil
|
|
|
|
}
|