2017-04-06 05:19:17 -04:00
|
|
|
package scaleway
|
|
|
|
|
|
|
|
import (
|
2018-02-05 19:50:32 -05:00
|
|
|
"context"
|
2017-04-06 05:19:17 -04:00
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
|
2020-11-17 19:31:03 -05:00
|
|
|
"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
|
2020-11-19 14:54:31 -05:00
|
|
|
packersdk "github.com/hashicorp/packer/packer-plugin-sdk/packer"
|
2020-09-09 04:27:48 -04:00
|
|
|
"github.com/scaleway/scaleway-sdk-go/api/instance/v1"
|
|
|
|
"github.com/scaleway/scaleway-sdk-go/scw"
|
2017-04-06 05:19:17 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type stepSnapshot struct{}
|
|
|
|
|
2019-03-29 11:50:02 -04:00
|
|
|
func (s *stepSnapshot) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
2020-09-09 04:27:48 -04:00
|
|
|
instanceAPI := instance.NewAPI(state.Get("client").(*scw.Client))
|
2020-11-19 14:54:31 -05:00
|
|
|
ui := state.Get("ui").(packersdk.Ui)
|
2018-09-27 06:04:04 -04:00
|
|
|
c := state.Get("config").(*Config)
|
2017-04-11 06:19:28 -04:00
|
|
|
volumeID := state.Get("root_volume_id").(string)
|
2017-04-06 05:19:17 -04:00
|
|
|
|
|
|
|
ui.Say(fmt.Sprintf("Creating snapshot: %v", c.SnapshotName))
|
2020-09-09 04:27:48 -04:00
|
|
|
createSnapshotResp, err := instanceAPI.CreateSnapshot(&instance.CreateSnapshotRequest{
|
|
|
|
Name: c.SnapshotName,
|
|
|
|
VolumeID: volumeID,
|
2020-10-28 12:46:40 -04:00
|
|
|
}, scw.WithContext(ctx))
|
2017-04-06 05:19:17 -04:00
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error creating snapshot: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2020-09-09 04:27:48 -04:00
|
|
|
log.Printf("Snapshot ID: %s", createSnapshotResp.Snapshot.ID)
|
|
|
|
state.Put("snapshot_id", createSnapshotResp.Snapshot.ID)
|
2017-04-06 05:19:17 -04:00
|
|
|
state.Put("snapshot_name", c.SnapshotName)
|
2020-09-09 04:27:48 -04:00
|
|
|
state.Put("region", c.Zone) // Deprecated
|
|
|
|
state.Put("zone", c.Zone)
|
2017-04-06 05:19:17 -04:00
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepSnapshot) Cleanup(state multistep.StateBag) {
|
|
|
|
// no cleanup
|
|
|
|
}
|