50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
package oci
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
"github.com/hashicorp/packer/packer"
|
|
)
|
|
|
|
type stepImage struct{}
|
|
|
|
func (s *stepImage) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
|
|
var (
|
|
driver = state.Get("driver").(Driver)
|
|
ui = state.Get("ui").(packer.Ui)
|
|
instanceID = state.Get("instance_id").(string)
|
|
)
|
|
|
|
ui.Say("Creating image from instance...")
|
|
|
|
image, err := driver.CreateImage(instanceID)
|
|
if err != nil {
|
|
err = fmt.Errorf("Error creating image from instance: %s", err)
|
|
ui.Error(err.Error())
|
|
state.Put("error", err)
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
err = driver.WaitForImageCreation(image.ID)
|
|
if err != nil {
|
|
err = fmt.Errorf("Error waiting for image creation to finish: %s", err)
|
|
ui.Error(err.Error())
|
|
state.Put("error", err)
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
// TODO(apryde): This is stale as .LifecycleState has changed to
|
|
// AVAILABLE at this point. Does it matter?
|
|
state.Put("image", image)
|
|
|
|
ui.Say("Image created.")
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (s *stepImage) Cleanup(state multistep.StateBag) {
|
|
// Nothing to do
|
|
}
|