46 lines
1.3 KiB
Go
46 lines
1.3 KiB
Go
package scaleway
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"log"
|
|
|
|
"github.com/hashicorp/packer-plugin-sdk/multistep"
|
|
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
|
|
"github.com/scaleway/scaleway-sdk-go/api/instance/v1"
|
|
"github.com/scaleway/scaleway-sdk-go/scw"
|
|
)
|
|
|
|
type stepSnapshot struct{}
|
|
|
|
func (s *stepSnapshot) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
|
instanceAPI := instance.NewAPI(state.Get("client").(*scw.Client))
|
|
ui := state.Get("ui").(packersdk.Ui)
|
|
c := state.Get("config").(*Config)
|
|
volumeID := state.Get("root_volume_id").(string)
|
|
|
|
ui.Say(fmt.Sprintf("Creating snapshot: %v", c.SnapshotName))
|
|
createSnapshotResp, err := instanceAPI.CreateSnapshot(&instance.CreateSnapshotRequest{
|
|
Name: c.SnapshotName,
|
|
VolumeID: volumeID,
|
|
}, scw.WithContext(ctx))
|
|
if err != nil {
|
|
err := fmt.Errorf("Error creating snapshot: %s", err)
|
|
state.Put("error", err)
|
|
ui.Error(err.Error())
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
log.Printf("Snapshot ID: %s", createSnapshotResp.Snapshot.ID)
|
|
state.Put("snapshot_id", createSnapshotResp.Snapshot.ID)
|
|
state.Put("snapshot_name", c.SnapshotName)
|
|
state.Put("region", c.Zone) // Deprecated
|
|
state.Put("zone", c.Zone)
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (s *stepSnapshot) Cleanup(state multistep.StateBag) {
|
|
// no cleanup
|
|
}
|