2016-03-04 05:14:55 -05:00
|
|
|
package arm
|
|
|
|
|
|
|
|
import (
|
2018-01-22 18:32:33 -05:00
|
|
|
"context"
|
2016-03-04 05:14:55 -05:00
|
|
|
"fmt"
|
|
|
|
|
2018-04-06 04:12:58 -04:00
|
|
|
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2018-04-01/compute"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/builder/azure/common/constants"
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2016-03-04 05:14:55 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type StepCaptureImage struct {
|
2017-05-29 00:06:09 -04:00
|
|
|
client *AzureClient
|
|
|
|
generalizeVM func(resourceGroupName, computeName string) error
|
2018-04-06 04:12:58 -04:00
|
|
|
captureVhd func(ctx context.Context, resourceGroupName string, computeName string, parameters *compute.VirtualMachineCaptureParameters) error
|
|
|
|
captureManagedImage func(ctx context.Context, resourceGroupName string, computeName string, parameters *compute.Image) error
|
2017-05-29 00:06:09 -04:00
|
|
|
get func(client *AzureClient) *CaptureTemplate
|
|
|
|
say func(message string)
|
|
|
|
error func(e error)
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewStepCaptureImage(client *AzureClient, ui packer.Ui) *StepCaptureImage {
|
|
|
|
var step = &StepCaptureImage{
|
|
|
|
client: client,
|
2017-05-29 00:06:09 -04:00
|
|
|
get: func(client *AzureClient) *CaptureTemplate {
|
|
|
|
return client.Template
|
|
|
|
},
|
|
|
|
say: func(message string) {
|
|
|
|
ui.Say(message)
|
|
|
|
},
|
|
|
|
error: func(e error) {
|
|
|
|
ui.Error(e.Error())
|
|
|
|
},
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
2017-05-29 00:06:09 -04:00
|
|
|
step.generalizeVM = step.generalize
|
|
|
|
step.captureVhd = step.captureImage
|
|
|
|
step.captureManagedImage = step.captureImageFromVM
|
|
|
|
|
2016-03-04 05:14:55 -05:00
|
|
|
return step
|
|
|
|
}
|
|
|
|
|
2017-05-29 00:06:09 -04:00
|
|
|
func (s *StepCaptureImage) generalize(resourceGroupName string, computeName string) error {
|
2018-04-06 04:12:58 -04:00
|
|
|
_, err := s.client.Generalize(context.TODO(), resourceGroupName, computeName)
|
2017-06-08 20:57:59 -04:00
|
|
|
if err != nil {
|
|
|
|
s.say(s.client.LastError.Error())
|
|
|
|
}
|
2017-05-29 00:06:09 -04:00
|
|
|
return err
|
|
|
|
}
|
2017-05-28 03:38:45 -04:00
|
|
|
|
2018-04-06 04:12:58 -04:00
|
|
|
func (s *StepCaptureImage) captureImageFromVM(ctx context.Context, resourceGroupName string, imageName string, image *compute.Image) error {
|
|
|
|
f, err := s.client.ImagesClient.CreateOrUpdate(ctx, resourceGroupName, imageName, *image)
|
2017-06-08 20:57:59 -04:00
|
|
|
if err != nil {
|
|
|
|
s.say(s.client.LastError.Error())
|
|
|
|
}
|
2019-05-30 17:25:43 -04:00
|
|
|
return f.WaitForCompletionRef(ctx, s.client.ImagesClient.Client)
|
2017-05-29 00:06:09 -04:00
|
|
|
}
|
2016-03-04 05:14:55 -05:00
|
|
|
|
2018-04-06 04:12:58 -04:00
|
|
|
func (s *StepCaptureImage) captureImage(ctx context.Context, resourceGroupName string, computeName string, parameters *compute.VirtualMachineCaptureParameters) error {
|
|
|
|
f, err := s.client.VirtualMachinesClient.Capture(ctx, resourceGroupName, computeName, *parameters)
|
2017-06-08 20:57:59 -04:00
|
|
|
if err != nil {
|
|
|
|
s.say(s.client.LastError.Error())
|
|
|
|
}
|
2019-05-30 17:25:43 -04:00
|
|
|
return f.WaitForCompletionRef(ctx, s.client.VirtualMachinesClient.Client)
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
2018-04-06 04:12:58 -04:00
|
|
|
func (s *StepCaptureImage) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
2016-03-04 05:14:55 -05:00
|
|
|
s.say("Capturing image ...")
|
|
|
|
|
|
|
|
var computeName = state.Get(constants.ArmComputeName).(string)
|
2017-05-30 03:33:54 -04:00
|
|
|
var location = state.Get(constants.ArmLocation).(string)
|
2016-03-04 05:14:55 -05:00
|
|
|
var resourceGroupName = state.Get(constants.ArmResourceGroupName).(string)
|
2017-05-29 00:06:09 -04:00
|
|
|
var vmCaptureParameters = state.Get(constants.ArmVirtualMachineCaptureParameters).(*compute.VirtualMachineCaptureParameters)
|
|
|
|
var imageParameters = state.Get(constants.ArmImageParameters).(*compute.Image)
|
|
|
|
|
|
|
|
var isManagedImage = state.Get(constants.ArmIsManagedImage).(bool)
|
2017-05-30 14:25:46 -04:00
|
|
|
var targetManagedImageResourceGroupName = state.Get(constants.ArmManagedImageResourceGroupName).(string)
|
|
|
|
var targetManagedImageName = state.Get(constants.ArmManagedImageName).(string)
|
|
|
|
var targetManagedImageLocation = state.Get(constants.ArmManagedImageLocation).(string)
|
2016-03-04 05:14:55 -05:00
|
|
|
|
2017-05-30 03:33:54 -04:00
|
|
|
s.say(fmt.Sprintf(" -> Compute ResourceGroupName : '%s'", resourceGroupName))
|
|
|
|
s.say(fmt.Sprintf(" -> Compute Name : '%s'", computeName))
|
|
|
|
s.say(fmt.Sprintf(" -> Compute Location : '%s'", location))
|
2016-03-04 05:14:55 -05:00
|
|
|
|
2018-04-06 04:12:58 -04:00
|
|
|
err := s.generalizeVM(resourceGroupName, computeName)
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
if isManagedImage {
|
|
|
|
s.say(fmt.Sprintf(" -> Image ResourceGroupName : '%s'", targetManagedImageResourceGroupName))
|
|
|
|
s.say(fmt.Sprintf(" -> Image Name : '%s'", targetManagedImageName))
|
|
|
|
s.say(fmt.Sprintf(" -> Image Location : '%s'", targetManagedImageLocation))
|
|
|
|
err = s.captureManagedImage(ctx, targetManagedImageResourceGroupName, targetManagedImageName, imageParameters)
|
|
|
|
} else {
|
|
|
|
err = s.captureVhd(ctx, resourceGroupName, computeName, vmCaptureParameters)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
state.Put(constants.Error, err)
|
|
|
|
s.error(err)
|
|
|
|
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2016-04-21 19:50:03 -04:00
|
|
|
|
|
|
|
// HACK(chrboum): I do not like this. The capture method should be returning this value
|
2018-05-03 20:28:34 -04:00
|
|
|
// instead having to pass in another lambda.
|
2016-04-21 19:50:03 -04:00
|
|
|
//
|
|
|
|
// Having to resort to capturing the template via an inspector is hack, and once I can
|
|
|
|
// resolve that I can cleanup this code too. See the comments in azure_client.go for more
|
|
|
|
// details.
|
2018-04-06 04:12:58 -04:00
|
|
|
// [paulmey]: autorest.Future now has access to the last http.Response, but I'm not sure if
|
|
|
|
// the body is still accessible.
|
2016-04-21 19:50:03 -04:00
|
|
|
template := s.get(s.client)
|
|
|
|
state.Put(constants.ArmCaptureTemplate, template)
|
|
|
|
|
2018-04-06 04:12:58 -04:00
|
|
|
return multistep.ActionContinue
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (*StepCaptureImage) Cleanup(multistep.StateBag) {
|
|
|
|
}
|