Files
Packer-Cn/builder/scaleway/builder.go
T

106 lines
2.8 KiB
Go
Raw Normal View History

2017-04-06 11:19:17 +02:00
// The scaleway package contains a packer.Builder implementation
// that builds Scaleway images (snapshots).
package scaleway
import (
"context"
"errors"
2017-04-06 11:19:17 +02:00
"fmt"
2019-12-17 11:25:56 +01:00
"github.com/hashicorp/hcl/v2/hcldec"
2017-04-06 11:19:17 +02:00
"github.com/hashicorp/packer/common"
"github.com/hashicorp/packer/helper/communicator"
2018-02-05 16:50:32 -08:00
"github.com/hashicorp/packer/helper/multistep"
2017-04-06 11:19:17 +02:00
"github.com/hashicorp/packer/packer"
"github.com/scaleway/scaleway-cli/pkg/api"
)
// The unique id for the builder
2017-07-11 08:43:04 +02:00
const BuilderId = "hashicorp.scaleway"
2017-04-06 11:19:17 +02:00
type Builder struct {
2019-12-17 11:25:56 +01:00
config Config
2017-04-06 11:19:17 +02:00
runner multistep.Runner
}
2019-12-17 11:25:56 +01:00
func (b *Builder) ConfigSpec() hcldec.ObjectSpec { return b.config.FlatMapstructure().HCL2Spec() }
func (b *Builder) Prepare(raws ...interface{}) ([]string, []string, error) {
2019-12-17 11:25:56 +01:00
warnings, errs := b.config.Prepare(raws...)
2017-04-06 11:19:17 +02:00
if errs != nil {
return nil, warnings, errs
2017-04-06 11:19:17 +02:00
}
return nil, nil, nil
2017-04-06 11:19:17 +02:00
}
func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (packer.Artifact, error) {
2017-07-21 12:26:20 +02:00
client, err := api.NewScalewayAPI(b.config.Organization, b.config.Token, b.config.UserAgent, b.config.Region)
if err != nil {
ui.Error(err.Error())
2017-07-21 12:26:20 +02:00
return nil, err
}
2017-04-06 11:19:17 +02:00
state := new(multistep.BasicStateBag)
2019-12-19 17:01:55 +01:00
state.Put("config", &b.config)
2017-04-06 11:19:17 +02:00
state.Put("client", client)
state.Put("hook", hook)
state.Put("ui", ui)
steps := []multistep.Step{
&stepCreateSSHKey{
2018-08-28 17:48:37 +02:00
Debug: b.config.PackerDebug,
DebugKeyPath: fmt.Sprintf("scw_%s.pem", b.config.PackerBuildName),
2017-04-06 11:19:17 +02:00
},
2019-07-18 22:42:18 +02:00
new(stepRemoveVolume),
2017-04-06 11:19:17 +02:00
new(stepCreateServer),
new(stepServerInfo),
&communicator.StepConnect{
Config: &b.config.Comm,
Host: communicator.CommHost(b.config.Comm.Host(), "server_ip"),
SSHConfig: b.config.Comm.SSHConfigFunc(),
2017-04-06 11:19:17 +02:00
},
new(common.StepProvision),
&common.StepCleanupTempKeys{
Comm: &b.config.Comm,
},
2017-04-06 11:19:17 +02:00
new(stepShutdown),
new(stepSnapshot),
2017-04-11 12:19:28 +02:00
new(stepImage),
2017-04-06 11:19:17 +02:00
}
b.runner = common.NewRunnerWithPauseFn(steps, b.config.PackerConfig, ui, state)
b.runner.Run(ctx, state)
2017-04-06 11:19:17 +02:00
if rawErr, ok := state.GetOk("error"); ok {
return nil, rawErr.(error)
}
// If we were interrupted or cancelled, then just exit.
if _, ok := state.GetOk(multistep.StateCancelled); ok {
return nil, errors.New("Build was cancelled.")
}
if _, ok := state.GetOk(multistep.StateHalted); ok {
return nil, errors.New("Build was halted.")
}
2017-04-06 11:19:17 +02:00
if _, ok := state.GetOk("snapshot_name"); !ok {
return nil, errors.New("Cannot find snapshot_name in state.")
2017-04-06 11:19:17 +02:00
}
artifact := &Artifact{
2017-04-11 12:19:28 +02:00
imageName: state.Get("image_name").(string),
imageID: state.Get("image_id").(string),
2017-04-06 11:19:17 +02:00
snapshotName: state.Get("snapshot_name").(string),
2017-04-11 12:19:28 +02:00
snapshotID: state.Get("snapshot_id").(string),
2017-04-06 11:19:17 +02:00
regionName: state.Get("region").(string),
client: client,
StateData: map[string]interface{}{"generated_data": state.Get("generated_data")},
2017-04-06 11:19:17 +02:00
}
return artifact, nil
}