2016-11-13 17:34:36 -05:00
|
|
|
package oneandone
|
|
|
|
|
|
|
|
import (
|
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
|
|
|
"log"
|
|
|
|
|
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 {
|
|
|
|
config *Config
|
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
|
|
|
c, warnings, errs := NewConfig(raws...)
|
|
|
|
if errs != nil {
|
|
|
|
return warnings, errs
|
|
|
|
}
|
|
|
|
b.config = c
|
|
|
|
|
|
|
|
return warnings, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packer.Artifact, error) {
|
|
|
|
|
2016-11-15 18:17:30 -05:00
|
|
|
state := new(multistep.BasicStateBag)
|
|
|
|
|
|
|
|
state.Put("config", b.config)
|
|
|
|
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,
|
|
|
|
Host: commHost,
|
|
|
|
SSHConfig: sshConfig,
|
|
|
|
},
|
|
|
|
&common.StepProvision{},
|
|
|
|
new(stepTakeSnapshot),
|
|
|
|
}
|
|
|
|
|
2017-08-31 13:43:00 -04:00
|
|
|
b.runner = common.NewRunner(steps, b.config.PackerConfig, ui)
|
2016-11-13 17:34:36 -05:00
|
|
|
b.runner.Run(state)
|
|
|
|
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Cancel() {
|
|
|
|
if b.runner != nil {
|
|
|
|
log.Println("Cancelling the step runner...")
|
|
|
|
b.runner.Cancel()
|
|
|
|
}
|
|
|
|
}
|