2019-06-14 17:54:27 -04:00
|
|
|
package arm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2019-12-17 05:25:56 -05:00
|
|
|
|
2019-06-14 17:54:27 -04:00
|
|
|
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2019-03-01/compute"
|
|
|
|
"github.com/hashicorp/packer/builder/azure/common/constants"
|
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
)
|
|
|
|
|
|
|
|
type StepPublishToSharedImageGallery struct {
|
2019-06-18 01:34:26 -04:00
|
|
|
client *AzureClient
|
2019-06-20 22:47:39 -04:00
|
|
|
publish func(ctx context.Context, mdiID, miSigPubRg, miSIGalleryName, miSGImageName, miSGImageVersion string, miSigReplicationRegions []string, location string, tags map[string]*string) (string, error)
|
2019-06-18 01:34:26 -04:00
|
|
|
say func(message string)
|
|
|
|
error func(e error)
|
|
|
|
toSIG func() bool
|
2019-06-14 17:54:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewStepPublishToSharedImageGallery(client *AzureClient, ui packer.Ui, config *Config) *StepPublishToSharedImageGallery {
|
|
|
|
var step = &StepPublishToSharedImageGallery{
|
|
|
|
client: client,
|
|
|
|
say: func(message string) {
|
|
|
|
ui.Say(message)
|
|
|
|
},
|
|
|
|
error: func(e error) {
|
|
|
|
ui.Error(e.Error())
|
|
|
|
},
|
|
|
|
toSIG: func() bool {
|
|
|
|
return config.isManagedImage() && config.SharedGalleryDestination.SigDestinationGalleryName != ""
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
step.publish = step.publishToSig
|
|
|
|
return step
|
|
|
|
}
|
|
|
|
|
2019-06-20 22:47:39 -04:00
|
|
|
func (s *StepPublishToSharedImageGallery) publishToSig(ctx context.Context, mdiID string, miSigPubRg string, miSIGalleryName string, miSGImageName string, miSGImageVersion string, miSigReplicationRegions []string, location string, tags map[string]*string) (string, error) {
|
2019-06-14 17:54:27 -04:00
|
|
|
|
|
|
|
replicationRegions := make([]compute.TargetRegion, len(miSigReplicationRegions))
|
|
|
|
for i, v := range miSigReplicationRegions {
|
|
|
|
regionName := v
|
|
|
|
replicationRegions[i] = compute.TargetRegion{Name: ®ionName}
|
|
|
|
}
|
|
|
|
|
|
|
|
galleryImageVersion := compute.GalleryImageVersion{
|
|
|
|
Location: &location,
|
2019-06-18 01:34:26 -04:00
|
|
|
Tags: tags,
|
2019-06-14 17:54:27 -04:00
|
|
|
GalleryImageVersionProperties: &compute.GalleryImageVersionProperties{
|
|
|
|
PublishingProfile: &compute.GalleryImageVersionPublishingProfile{
|
|
|
|
Source: &compute.GalleryArtifactSource{
|
|
|
|
ManagedImage: &compute.ManagedArtifact{
|
|
|
|
ID: &mdiID,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
TargetRegions: &replicationRegions,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-06-17 18:54:37 -04:00
|
|
|
f, err := s.client.GalleryImageVersionsClient.CreateOrUpdate(ctx, miSigPubRg, miSIGalleryName, miSGImageName, miSGImageVersion, galleryImageVersion)
|
2019-06-14 17:54:27 -04:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
s.say(s.client.LastError.Error())
|
2019-06-20 22:47:39 -04:00
|
|
|
return "", err
|
2019-06-14 17:54:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
err = f.WaitForCompletionRef(ctx, s.client.GalleryImageVersionsClient.Client)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
s.say(s.client.LastError.Error())
|
2019-06-20 22:47:39 -04:00
|
|
|
return "", err
|
2019-06-14 17:54:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
createdSGImageVersion, err := f.Result(s.client.GalleryImageVersionsClient)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
s.say(s.client.LastError.Error())
|
2019-06-20 22:47:39 -04:00
|
|
|
return "", err
|
2019-06-14 17:54:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
s.say(fmt.Sprintf(" -> Shared Gallery Image Version ID : '%s'", *(createdSGImageVersion.ID)))
|
2019-06-20 22:47:39 -04:00
|
|
|
return *(createdSGImageVersion.ID), nil
|
2019-06-14 17:54:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StepPublishToSharedImageGallery) Run(ctx context.Context, stateBag multistep.StateBag) multistep.StepAction {
|
2019-06-17 15:13:03 -04:00
|
|
|
if !s.toSIG() {
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2019-06-14 17:54:27 -04:00
|
|
|
s.say("Publishing to Shared Image Gallery ...")
|
|
|
|
|
|
|
|
var miSigPubRg = stateBag.Get(constants.ArmManagedImageSigPublishResourceGroup).(string)
|
|
|
|
var miSIGalleryName = stateBag.Get(constants.ArmManagedImageSharedGalleryName).(string)
|
|
|
|
var miSGImageName = stateBag.Get(constants.ArmManagedImageSharedGalleryImageName).(string)
|
|
|
|
var miSGImageVersion = stateBag.Get(constants.ArmManagedImageSharedGalleryImageVersion).(string)
|
2019-06-19 02:10:18 -04:00
|
|
|
var location = stateBag.Get(constants.ArmLocation).(string)
|
2019-06-14 17:54:27 -04:00
|
|
|
var tags = stateBag.Get(constants.ArmTags).(map[string]*string)
|
|
|
|
var miSigReplicationRegions = stateBag.Get(constants.ArmManagedImageSharedGalleryReplicationRegions).([]string)
|
2019-06-19 02:53:20 -04:00
|
|
|
var targetManagedImageResourceGroupName = stateBag.Get(constants.ArmManagedImageResourceGroupName).(string)
|
2019-06-17 18:08:10 -04:00
|
|
|
var targetManagedImageName = stateBag.Get(constants.ArmManagedImageName).(string)
|
|
|
|
var managedImageSubscription = stateBag.Get(constants.ArmManagedImageSubscription).(string)
|
|
|
|
var mdiID = fmt.Sprintf("/subscriptions/%s/resourceGroups/%s/providers/Microsoft.Compute/images/%s", managedImageSubscription, targetManagedImageResourceGroupName, targetManagedImageName)
|
2019-06-14 17:54:27 -04:00
|
|
|
|
2019-06-17 18:08:10 -04:00
|
|
|
s.say(fmt.Sprintf(" -> MDI ID used for SIG publish : '%s'", mdiID))
|
2019-06-14 17:54:27 -04:00
|
|
|
s.say(fmt.Sprintf(" -> SIG publish resource group : '%s'", miSigPubRg))
|
|
|
|
s.say(fmt.Sprintf(" -> SIG gallery name : '%s'", miSIGalleryName))
|
|
|
|
s.say(fmt.Sprintf(" -> SIG image name : '%s'", miSGImageName))
|
|
|
|
s.say(fmt.Sprintf(" -> SIG image version : '%s'", miSGImageVersion))
|
2019-06-17 18:08:10 -04:00
|
|
|
s.say(fmt.Sprintf(" -> SIG replication regions : '%v'", miSigReplicationRegions))
|
2019-06-20 22:47:39 -04:00
|
|
|
createdGalleryImageVersionID, err := s.publish(ctx, mdiID, miSigPubRg, miSIGalleryName, miSGImageName, miSGImageVersion, miSigReplicationRegions, location, tags)
|
2019-06-14 17:54:27 -04:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
stateBag.Put(constants.Error, err)
|
|
|
|
s.error(err)
|
|
|
|
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2019-06-20 22:47:39 -04:00
|
|
|
stateBag.Put(constants.ArmManagedImageSharedGalleryId, createdGalleryImageVersionID)
|
2019-06-14 17:54:27 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*StepPublishToSharedImageGallery) Cleanup(multistep.StateBag) {
|
|
|
|
}
|