2017-04-06 05:19:17 -04:00
|
|
|
// The scaleway package contains a packer.Builder implementation
|
|
|
|
// that builds Scaleway images (snapshots).
|
|
|
|
|
|
|
|
package scaleway
|
|
|
|
|
|
|
|
import (
|
2019-03-22 09:53:28 -04:00
|
|
|
"context"
|
2018-01-05 03:57:59 -05:00
|
|
|
"errors"
|
2017-04-06 05:19:17 -04:00
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/hashicorp/packer/common"
|
|
|
|
"github.com/hashicorp/packer/helper/communicator"
|
2018-02-05 19:50:32 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-04-06 05:19:17 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
"github.com/scaleway/scaleway-cli/pkg/api"
|
|
|
|
)
|
|
|
|
|
|
|
|
// The unique id for the builder
|
2017-07-11 02:43:04 -04:00
|
|
|
const BuilderId = "hashicorp.scaleway"
|
2017-04-06 05:19:17 -04:00
|
|
|
|
|
|
|
type Builder struct {
|
2018-09-27 06:04:04 -04:00
|
|
|
config *Config
|
2017-04-06 05:19:17 -04:00
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
|
|
|
c, warnings, errs := NewConfig(raws...)
|
|
|
|
if errs != nil {
|
|
|
|
return warnings, errs
|
|
|
|
}
|
2018-09-27 06:04:04 -04:00
|
|
|
b.config = c
|
2017-04-06 05:19:17 -04:00
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2019-03-22 09:53:28 -04:00
|
|
|
func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (packer.Artifact, error) {
|
2017-07-21 06:26:20 -04:00
|
|
|
client, err := api.NewScalewayAPI(b.config.Organization, b.config.Token, b.config.UserAgent, b.config.Region)
|
|
|
|
|
|
|
|
if err != nil {
|
2018-01-05 04:07:03 -05:00
|
|
|
ui.Error(err.Error())
|
2017-07-21 06:26:20 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-04-06 05:19:17 -04:00
|
|
|
|
|
|
|
state := new(multistep.BasicStateBag)
|
|
|
|
state.Put("config", b.config)
|
|
|
|
state.Put("client", client)
|
|
|
|
state.Put("hook", hook)
|
|
|
|
state.Put("ui", ui)
|
|
|
|
|
|
|
|
steps := []multistep.Step{
|
|
|
|
&stepCreateSSHKey{
|
2018-08-28 11:48:37 -04:00
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
DebugKeyPath: fmt.Sprintf("scw_%s.pem", b.config.PackerBuildName),
|
2017-04-06 05:19:17 -04:00
|
|
|
},
|
2019-07-18 16:42:18 -04:00
|
|
|
new(stepRemoveVolume),
|
2017-04-06 05:19:17 -04:00
|
|
|
new(stepCreateServer),
|
|
|
|
new(stepServerInfo),
|
|
|
|
&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(),
|
2017-04-06 05:19:17 -04:00
|
|
|
},
|
|
|
|
new(common.StepProvision),
|
2018-09-14 14:03:23 -04:00
|
|
|
&common.StepCleanupTempKeys{
|
|
|
|
Comm: &b.config.Comm,
|
|
|
|
},
|
2017-04-06 05:19:17 -04:00
|
|
|
new(stepShutdown),
|
|
|
|
new(stepSnapshot),
|
2017-04-11 06:19:28 -04:00
|
|
|
new(stepImage),
|
2017-04-06 05:19:17 -04:00
|
|
|
}
|
|
|
|
|
2018-01-05 03:57:59 -05:00
|
|
|
b.runner = common.NewRunnerWithPauseFn(steps, b.config.PackerConfig, ui, state)
|
2019-03-22 09:53:28 -04:00
|
|
|
b.runner.Run(ctx, state)
|
2017-04-06 05:19:17 -04:00
|
|
|
|
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
2018-01-05 03:57:59 -05:00
|
|
|
// 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 05:19:17 -04:00
|
|
|
if _, ok := state.GetOk("snapshot_name"); !ok {
|
2018-01-05 03:57:59 -05:00
|
|
|
return nil, errors.New("Cannot find snapshot_name in state.")
|
2017-04-06 05:19:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
artifact := &Artifact{
|
2017-04-11 06:19:28 -04:00
|
|
|
imageName: state.Get("image_name").(string),
|
|
|
|
imageID: state.Get("image_id").(string),
|
2017-04-06 05:19:17 -04:00
|
|
|
snapshotName: state.Get("snapshot_name").(string),
|
2017-04-11 06:19:28 -04:00
|
|
|
snapshotID: state.Get("snapshot_id").(string),
|
2017-04-06 05:19:17 -04:00
|
|
|
regionName: state.Get("region").(string),
|
|
|
|
client: client,
|
|
|
|
}
|
|
|
|
|
|
|
|
return artifact, nil
|
|
|
|
}
|