86 lines
1.9 KiB
Go
86 lines
1.9 KiB
Go
package hyperone
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
|
|
"github.com/hashicorp/packer/common"
|
|
"github.com/hashicorp/packer/helper/communicator"
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
"github.com/hashicorp/packer/packer"
|
|
"github.com/hyperonecom/h1-client-go"
|
|
)
|
|
|
|
const BuilderID = "hyperone.builder"
|
|
|
|
type Builder struct {
|
|
config Config
|
|
runner multistep.Runner
|
|
client *openapi.APIClient
|
|
}
|
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
|
config, warnings, errs := NewConfig(raws...)
|
|
if errs != nil {
|
|
return warnings, errs
|
|
}
|
|
|
|
b.config = *config
|
|
|
|
cfg := openapi.NewConfiguration()
|
|
cfg.AddDefaultHeader("x-auth-token", b.config.Token)
|
|
if b.config.Project != "" {
|
|
cfg.AddDefaultHeader("x-project", b.config.Project)
|
|
}
|
|
|
|
prefer := fmt.Sprintf("respond-async,wait=%d", int(b.config.StateTimeout.Seconds()))
|
|
cfg.AddDefaultHeader("Prefer", prefer)
|
|
|
|
b.client = openapi.NewAPIClient(cfg)
|
|
|
|
return nil, nil
|
|
}
|
|
|
|
func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packer.Artifact, error) {
|
|
state := &multistep.BasicStateBag{}
|
|
state.Put("config", &b.config)
|
|
state.Put("client", b.client)
|
|
state.Put("hook", hook)
|
|
state.Put("ui", ui)
|
|
|
|
steps := []multistep.Step{
|
|
&stepCreateSSHKey{},
|
|
&stepCreateVM{},
|
|
&communicator.StepConnect{
|
|
Config: &b.config.Comm,
|
|
Host: getPublicIP,
|
|
SSHConfig: b.config.Comm.SSHConfigFunc(),
|
|
},
|
|
&common.StepProvision{},
|
|
&stepStopVM{},
|
|
&stepCreateImage{},
|
|
}
|
|
|
|
b.runner = common.NewRunner(steps, b.config.PackerConfig, ui)
|
|
b.runner.Run(state)
|
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
|
return nil, rawErr.(error)
|
|
}
|
|
|
|
artifact := &Artifact{
|
|
imageID: state.Get("image_id").(string),
|
|
imageName: state.Get("image_name").(string),
|
|
client: b.client,
|
|
}
|
|
|
|
return artifact, nil
|
|
}
|
|
|
|
func (b *Builder) Cancel() {
|
|
if b.runner != nil {
|
|
log.Println("Cancelling the runner...")
|
|
b.runner.Cancel()
|
|
}
|
|
}
|