diff --git a/builder/openstack/artifact.go b/builder/openstack/artifact.go index 4be50ab35..5492a0df3 100644 --- a/builder/openstack/artifact.go +++ b/builder/openstack/artifact.go @@ -5,7 +5,7 @@ import ( "log" "github.com/gophercloud/gophercloud" - "github.com/gophercloud/gophercloud/openstack/compute/v2/images" + "github.com/gophercloud/gophercloud/openstack/imageservice/v2/images" ) // Artifact is an artifact implementation that contains built images. diff --git a/builder/openstack/builder.go b/builder/openstack/builder.go index bc87c3375..23f2448f1 100644 --- a/builder/openstack/builder.go +++ b/builder/openstack/builder.go @@ -71,6 +71,11 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe return nil, fmt.Errorf("Error initializing compute client: %s", err) } + imageClient, err := b.config.imageV2Client() + if err != nil { + return nil, fmt.Errorf("Error initializing image client: %s", err) + } + // Setup the state bag and initial state for the steps state := new(multistep.BasicStateBag) state.Put("config", &b.config) @@ -165,7 +170,7 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe artifact := &Artifact{ ImageId: state.Get("image").(string), BuilderIdValue: BuilderId, - Client: computeClient, + Client: imageClient, } return artifact, nil diff --git a/builder/openstack/step_create_image.go b/builder/openstack/step_create_image.go index a4bed481a..608a4a818 100644 --- a/builder/openstack/step_create_image.go +++ b/builder/openstack/step_create_image.go @@ -9,8 +9,8 @@ import ( "github.com/gophercloud/gophercloud/openstack/blockstorage/extensions/volumeactions" "github.com/gophercloud/gophercloud" - "github.com/gophercloud/gophercloud/openstack/compute/v2/images" "github.com/gophercloud/gophercloud/openstack/compute/v2/servers" + "github.com/gophercloud/gophercloud/openstack/imageservice/v2/images" "github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/packer" ) @@ -25,13 +25,21 @@ func (s *stepCreateImage) Run(_ context.Context, state multistep.StateBag) multi ui := state.Get("ui").(packer.Ui) // We need the v2 compute client - client, err := config.computeV2Client() + computeClient, err := config.computeV2Client() if err != nil { err = fmt.Errorf("Error initializing compute client: %s", err) state.Put("error", err) return multistep.ActionHalt } + // We need the v2 image client + imageClient, err := config.imageV2Client() + if err != nil { + err = fmt.Errorf("Error initializing image service client: %s", err) + state.Put("error", err) + return multistep.ActionHalt + } + // Create the image. // Image source depends on the type of the Compute instance. It can be // Block Storage service volume or regular Compute service local volume. @@ -58,7 +66,7 @@ func (s *stepCreateImage) Run(_ context.Context, state multistep.StateBag) multi } imageId = image.ImageID } else { - imageId, err = servers.CreateImage(client, server.ID, servers.CreateImageOpts{ + imageId, err = servers.CreateImage(computeClient, server.ID, servers.CreateImageOpts{ Name: config.ImageName, Metadata: config.ImageMetadata, }).ExtractImageID() @@ -76,7 +84,7 @@ func (s *stepCreateImage) Run(_ context.Context, state multistep.StateBag) multi // Wait for the image to become ready ui.Say(fmt.Sprintf("Waiting for image %s (image id: %s) to become ready...", config.ImageName, imageId)) - if err := WaitForImage(client, imageId); err != nil { + if err := WaitForImage(imageClient, imageId); err != nil { err := fmt.Errorf("Error waiting for image: %s", err) state.Put("error", err) ui.Error(err.Error()) @@ -113,11 +121,11 @@ func WaitForImage(client *gophercloud.ServiceClient, imageId string) error { return err } - if image.Status == "ACTIVE" { + if image.Status == "active" { return nil } - log.Printf("Waiting for image creation status: %s (%d%%)", image.Status, image.Progress) + log.Printf("Waiting for image creation status: %s", image.Status) time.Sleep(2 * time.Second) } }