157 lines
4.9 KiB
Go
157 lines
4.9 KiB
Go
package chroot
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"log"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2019-12-01/compute"
|
|
"github.com/Azure/go-autorest/autorest/azure"
|
|
"github.com/Azure/go-autorest/autorest/to"
|
|
"github.com/hashicorp/packer/builder/azure/common/client"
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
"github.com/hashicorp/packer/packer"
|
|
)
|
|
|
|
var _ multistep.Step = &StepCreateNewDiskset{}
|
|
|
|
type StepCreateNewDiskset struct {
|
|
OSDiskID string // Disk ID
|
|
OSDiskSizeGB int32 // optional, ignored if 0
|
|
OSDiskStorageAccountType string // from compute.DiskStorageAccountTypes
|
|
|
|
subscriptionID, resourceGroup, diskName string // split out resource id
|
|
|
|
HyperVGeneration string // For OS disk
|
|
|
|
// Copy another disk
|
|
SourceOSDiskResourceID string
|
|
|
|
// Extract from platform image
|
|
SourcePlatformImage *client.PlatformImage
|
|
// Extract from shared image
|
|
SourceImageResourceID string
|
|
// Location is needed for platform and shared images
|
|
Location string
|
|
|
|
SkipCleanup bool
|
|
}
|
|
|
|
func parseDiskResourceID(resourceID string) (subscriptionID, resourceGroup, diskName string, err error) {
|
|
r, err := azure.ParseResourceID(resourceID)
|
|
if err != nil {
|
|
return "", "", "", err
|
|
}
|
|
|
|
if !strings.EqualFold(r.Provider, "Microsoft.Compute") ||
|
|
!strings.EqualFold(r.ResourceType, "disks") {
|
|
return "", "", "", fmt.Errorf("Resource %q is not of type Microsoft.Compute/disks", resourceID)
|
|
}
|
|
|
|
return r.SubscriptionID, r.ResourceGroup, r.ResourceName, nil
|
|
}
|
|
|
|
func (s *StepCreateNewDiskset) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
|
azcli := state.Get("azureclient").(client.AzureClientSet)
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
state.Put(stateBagKey_OSDiskResourceID, s.OSDiskID)
|
|
ui.Say(fmt.Sprintf("Creating disk '%s'", s.OSDiskID))
|
|
|
|
var err error
|
|
s.subscriptionID, s.resourceGroup, s.diskName, err = parseDiskResourceID(s.OSDiskID)
|
|
if err != nil {
|
|
log.Printf("StepCreateNewDisk.Run: error: %+v", err)
|
|
err := fmt.Errorf(
|
|
"error parsing resource id '%s': %v", s.OSDiskID, err)
|
|
state.Put("error", err)
|
|
ui.Error(err.Error())
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
disk := compute.Disk{
|
|
Location: to.StringPtr(s.Location),
|
|
DiskProperties: &compute.DiskProperties{
|
|
OsType: "Linux",
|
|
CreationData: &compute.CreationData{},
|
|
},
|
|
}
|
|
|
|
if s.OSDiskStorageAccountType != "" {
|
|
disk.Sku = &compute.DiskSku{
|
|
Name: compute.DiskStorageAccountTypes(s.OSDiskStorageAccountType),
|
|
}
|
|
}
|
|
|
|
if s.HyperVGeneration != "" {
|
|
disk.DiskProperties.HyperVGeneration = compute.HyperVGeneration(s.HyperVGeneration)
|
|
}
|
|
|
|
if s.OSDiskSizeGB > 0 {
|
|
disk.DiskProperties.DiskSizeGB = to.Int32Ptr(s.OSDiskSizeGB)
|
|
}
|
|
|
|
switch {
|
|
case s.SourcePlatformImage != nil:
|
|
disk.CreationData.CreateOption = compute.FromImage
|
|
disk.CreationData.ImageReference = &compute.ImageDiskReference{
|
|
ID: to.StringPtr(fmt.Sprintf(
|
|
"/subscriptions/%s/providers/Microsoft.Compute/locations/%s/publishers/%s/artifacttypes/vmimage/offers/%s/skus/%s/versions/%s",
|
|
s.subscriptionID, s.Location, s.SourcePlatformImage.Publisher, s.SourcePlatformImage.Offer, s.SourcePlatformImage.Sku, s.SourcePlatformImage.Version)),
|
|
}
|
|
case s.SourceOSDiskResourceID != "":
|
|
disk.CreationData.CreateOption = compute.Copy
|
|
disk.CreationData.SourceResourceID = to.StringPtr(s.SourceOSDiskResourceID)
|
|
case s.SourceImageResourceID != "":
|
|
disk.CreationData.CreateOption = compute.FromImage
|
|
disk.CreationData.GalleryImageReference = &compute.ImageDiskReference{
|
|
ID: to.StringPtr(s.SourceImageResourceID),
|
|
}
|
|
default:
|
|
disk.CreationData.CreateOption = compute.Empty
|
|
}
|
|
|
|
f, err := azcli.DisksClient().CreateOrUpdate(ctx, s.resourceGroup, s.diskName, disk)
|
|
if err == nil {
|
|
cli := azcli.PollClient() // quick polling for quick operations
|
|
cli.PollingDelay = time.Second
|
|
err = f.WaitForCompletionRef(ctx, cli)
|
|
}
|
|
if err != nil {
|
|
log.Printf("StepCreateNewDisk.Run: error: %+v", err)
|
|
err := fmt.Errorf(
|
|
"error creating new disk '%s': %v", s.OSDiskID, err)
|
|
state.Put("error", err)
|
|
ui.Error(err.Error())
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (s *StepCreateNewDiskset) Cleanup(state multistep.StateBag) {
|
|
if !s.SkipCleanup {
|
|
azcli := state.Get("azureclient").(client.AzureClientSet)
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
ui.Say(fmt.Sprintf("Waiting for disk %q detach to complete", s.OSDiskID))
|
|
err := NewDiskAttacher(azcli).WaitForDetach(context.Background(), s.OSDiskID)
|
|
if err != nil {
|
|
ui.Error(fmt.Sprintf("error detaching disk %q: %s", s.OSDiskID, err))
|
|
}
|
|
|
|
ui.Say(fmt.Sprintf("Deleting disk %q", s.OSDiskID))
|
|
|
|
f, err := azcli.DisksClient().Delete(context.TODO(), s.resourceGroup, s.diskName)
|
|
if err == nil {
|
|
err = f.WaitForCompletionRef(context.TODO(), azcli.PollClient())
|
|
}
|
|
if err != nil {
|
|
log.Printf("StepCreateNewDisk.Cleanup: error: %+v", err)
|
|
ui.Error(fmt.Sprintf("error deleting disk '%s': %v.", s.OSDiskID, err))
|
|
}
|
|
}
|
|
}
|