2019-05-01 15:10:15 -04:00
|
|
|
// Package bsusurrogate contains a packer.Builder implementation that
|
2019-01-29 13:24:26 -05:00
|
|
|
// builds a new EBS-backed OMI using an ephemeral instance.
|
2019-01-23 16:53:41 -05:00
|
|
|
package bsusurrogate
|
|
|
|
|
|
|
|
import (
|
2019-05-01 15:10:15 -04:00
|
|
|
"context"
|
2019-01-29 16:07:32 -05:00
|
|
|
"crypto/tls"
|
2019-01-29 13:24:26 -05:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2019-01-29 16:07:32 -05:00
|
|
|
"net/http"
|
2019-01-23 16:53:41 -05:00
|
|
|
|
2019-01-28 13:33:28 -05:00
|
|
|
osccommon "github.com/hashicorp/packer/builder/osc/common"
|
2019-01-23 16:53:41 -05:00
|
|
|
"github.com/hashicorp/packer/common"
|
2019-02-04 13:17:32 -05:00
|
|
|
"github.com/hashicorp/packer/helper/communicator"
|
2019-01-29 13:24:26 -05:00
|
|
|
"github.com/hashicorp/packer/helper/config"
|
2019-01-23 16:53:41 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
"github.com/hashicorp/packer/template/interpolate"
|
2019-01-29 16:07:32 -05:00
|
|
|
"github.com/outscale/osc-go/oapi"
|
2019-01-23 16:53:41 -05:00
|
|
|
)
|
|
|
|
|
2019-02-07 15:55:12 -05:00
|
|
|
const BuilderId = "oapi.outscale.bsusurrogate"
|
2019-01-23 16:53:41 -05:00
|
|
|
|
|
|
|
type Config struct {
|
2019-01-28 13:33:28 -05:00
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
osccommon.AccessConfig `mapstructure:",squash"`
|
2019-01-28 16:24:31 -05:00
|
|
|
osccommon.RunConfig `mapstructure:",squash"`
|
2019-01-28 18:11:57 -05:00
|
|
|
osccommon.BlockDevices `mapstructure:",squash"`
|
2019-01-29 12:27:42 -05:00
|
|
|
osccommon.OMIConfig `mapstructure:",squash"`
|
2019-01-29 12:28:11 -05:00
|
|
|
|
2019-01-30 13:48:51 -05:00
|
|
|
RootDevice RootBlockDevice `mapstructure:"omi_root_device"`
|
2019-01-29 13:18:02 -05:00
|
|
|
VolumeRunTags osccommon.TagMap `mapstructure:"run_volume_tags"`
|
2019-01-29 12:28:11 -05:00
|
|
|
|
|
|
|
ctx interpolate.Context
|
2019-01-23 16:53:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type Builder struct {
|
|
|
|
config Config
|
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
2019-01-30 13:48:51 -05:00
|
|
|
|
2019-01-29 13:24:26 -05:00
|
|
|
b.config.ctx.Funcs = osccommon.TemplateFuncs
|
|
|
|
|
|
|
|
err := config.Decode(&b.config, &config.DecodeOpts{
|
|
|
|
Interpolate: true,
|
|
|
|
InterpolateContext: &b.config.ctx,
|
|
|
|
InterpolateFilter: &interpolate.RenderFilter{
|
|
|
|
Exclude: []string{
|
|
|
|
"omi_description",
|
|
|
|
"run_tags",
|
|
|
|
"run_volume_tags",
|
|
|
|
"snapshot_tags",
|
|
|
|
"spot_tags",
|
|
|
|
"tags",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, raws...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.PackerConfig.PackerForce {
|
|
|
|
b.config.OMIForceDeregister = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accumulate any errors
|
|
|
|
var errs *packer.MultiError
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.AccessConfig.Prepare(&b.config.ctx)...)
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.RunConfig.Prepare(&b.config.ctx)...)
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
b.config.OMIConfig.Prepare(&b.config.AccessConfig, &b.config.ctx)...)
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.BlockDevices.Prepare(&b.config.ctx)...)
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.RootDevice.Prepare(&b.config.ctx)...)
|
|
|
|
|
|
|
|
if b.config.OMIVirtType == "" {
|
2019-01-30 13:48:51 -05:00
|
|
|
errs = packer.MultiErrorAppend(errs, errors.New("omi_virtualization_type is required."))
|
2019-01-29 13:24:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
foundRootVolume := false
|
|
|
|
for _, launchDevice := range b.config.BlockDevices.LaunchMappings {
|
|
|
|
if launchDevice.DeviceName == b.config.RootDevice.SourceDeviceName {
|
|
|
|
foundRootVolume = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !foundRootVolume {
|
|
|
|
errs = packer.MultiErrorAppend(errs, fmt.Errorf("no volume with name '%s' is found", b.config.RootDevice.SourceDeviceName))
|
|
|
|
}
|
|
|
|
|
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
|
|
|
return nil, errs
|
|
|
|
}
|
|
|
|
|
|
|
|
packer.LogSecretFilter.Set(b.config.AccessKey, b.config.SecretKey, b.config.Token)
|
2019-01-23 16:53:41 -05:00
|
|
|
return nil, nil
|
2019-01-29 13:24:26 -05:00
|
|
|
|
2019-01-23 16:53:41 -05:00
|
|
|
}
|
|
|
|
|
2019-05-01 15:10:15 -04:00
|
|
|
func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (packer.Artifact, error) {
|
2019-01-29 16:07:32 -05:00
|
|
|
clientConfig, err := b.config.Config()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
skipClient := &http.Client{
|
|
|
|
Transport: &http.Transport{
|
|
|
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
oapiconn := oapi.NewClient(clientConfig, skipClient)
|
|
|
|
|
|
|
|
// Setup the state bag and initial state for the steps
|
|
|
|
state := new(multistep.BasicStateBag)
|
|
|
|
state.Put("config", &b.config)
|
|
|
|
state.Put("oapi", oapiconn)
|
|
|
|
state.Put("clientConfig", clientConfig)
|
|
|
|
state.Put("hook", hook)
|
|
|
|
state.Put("ui", ui)
|
|
|
|
|
2019-01-30 13:48:51 -05:00
|
|
|
//VMStep
|
|
|
|
|
2019-02-04 18:12:47 -05:00
|
|
|
omiDevices := b.config.BuildOMIDevices()
|
2019-02-04 14:47:27 -05:00
|
|
|
launchDevices := b.config.BuildLaunchDevices()
|
2019-01-30 13:48:51 -05:00
|
|
|
|
|
|
|
steps := []multistep.Step{
|
|
|
|
&osccommon.StepPreValidate{
|
|
|
|
DestOmiName: b.config.OMIName,
|
|
|
|
ForceDeregister: b.config.OMIForceDeregister,
|
|
|
|
},
|
2019-01-30 19:33:56 -05:00
|
|
|
&osccommon.StepSourceOMIInfo{
|
2019-04-05 18:06:17 -04:00
|
|
|
SourceOmi: b.config.SourceOmi,
|
|
|
|
OmiFilters: b.config.SourceOmiFilter,
|
|
|
|
OMIVirtType: b.config.OMIVirtType, //TODO: Remove if it is not used
|
2019-01-30 19:33:56 -05:00
|
|
|
},
|
2019-01-31 15:48:46 -05:00
|
|
|
&osccommon.StepNetworkInfo{
|
|
|
|
NetId: b.config.NetId,
|
|
|
|
NetFilter: b.config.NetFilter,
|
|
|
|
SecurityGroupIds: b.config.SecurityGroupIds,
|
|
|
|
SecurityGroupFilter: b.config.SecurityGroupFilter,
|
|
|
|
SubnetId: b.config.SubnetId,
|
|
|
|
SubnetFilter: b.config.SubnetFilter,
|
|
|
|
SubregionName: b.config.Subregion,
|
|
|
|
},
|
2019-01-31 16:29:31 -05:00
|
|
|
&osccommon.StepKeyPair{
|
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
Comm: &b.config.RunConfig.Comm,
|
2019-02-06 10:31:12 -05:00
|
|
|
DebugKeyPath: fmt.Sprintf("oapi_%s", b.config.PackerBuildName),
|
2019-01-31 16:29:31 -05:00
|
|
|
},
|
2019-02-01 16:20:47 -05:00
|
|
|
&osccommon.StepSecurityGroup{
|
|
|
|
SecurityGroupFilter: b.config.SecurityGroupFilter,
|
|
|
|
SecurityGroupIds: b.config.SecurityGroupIds,
|
|
|
|
CommConfig: &b.config.RunConfig.Comm,
|
|
|
|
TemporarySGSourceCidr: b.config.TemporarySGSourceCidr,
|
|
|
|
},
|
2019-02-04 11:37:31 -05:00
|
|
|
&osccommon.StepCleanupVolumes{
|
|
|
|
BlockDevices: b.config.BlockDevices,
|
|
|
|
},
|
|
|
|
&osccommon.StepRunSourceVm{
|
|
|
|
AssociatePublicIpAddress: b.config.AssociatePublicIpAddress,
|
|
|
|
BlockDevices: b.config.BlockDevices,
|
|
|
|
Comm: &b.config.RunConfig.Comm,
|
|
|
|
Ctx: b.config.ctx,
|
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
BsuOptimized: b.config.BsuOptimized,
|
|
|
|
EnableT2Unlimited: b.config.EnableT2Unlimited,
|
2019-02-12 16:12:19 -05:00
|
|
|
ExpectedRootDevice: osccommon.RunSourceVmBSUExpectedRootDevice,
|
2019-02-04 11:37:31 -05:00
|
|
|
IamVmProfile: b.config.IamVmProfile,
|
|
|
|
VmInitiatedShutdownBehavior: b.config.VmInitiatedShutdownBehavior,
|
|
|
|
VmType: b.config.VmType,
|
|
|
|
IsRestricted: false,
|
|
|
|
SourceOMI: b.config.SourceOmi,
|
|
|
|
Tags: b.config.RunTags,
|
|
|
|
UserData: b.config.UserData,
|
|
|
|
UserDataFile: b.config.UserDataFile,
|
|
|
|
VolumeTags: b.config.VolumeRunTags,
|
|
|
|
},
|
2019-02-04 12:58:15 -05:00
|
|
|
&osccommon.StepGetPassword{
|
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
Comm: &b.config.RunConfig.Comm,
|
|
|
|
Timeout: b.config.WindowsPasswordTimeout,
|
|
|
|
BuildName: b.config.PackerBuildName,
|
|
|
|
},
|
2019-02-04 13:17:32 -05:00
|
|
|
&communicator.StepConnect{
|
|
|
|
Config: &b.config.RunConfig.Comm,
|
|
|
|
Host: osccommon.SSHHost(
|
|
|
|
oapiconn,
|
2019-07-18 12:47:15 -04:00
|
|
|
b.config.SSHInterface),
|
2019-02-04 13:17:32 -05:00
|
|
|
SSHConfig: b.config.RunConfig.Comm.SSHConfigFunc(),
|
|
|
|
},
|
2019-02-04 13:25:37 -05:00
|
|
|
&common.StepProvision{},
|
|
|
|
&common.StepCleanupTempKeys{
|
|
|
|
Comm: &b.config.RunConfig.Comm,
|
|
|
|
},
|
2019-02-04 13:58:26 -05:00
|
|
|
&osccommon.StepStopBSUBackedVm{
|
|
|
|
Skip: false,
|
|
|
|
DisableStopVm: b.config.DisableStopVm,
|
|
|
|
},
|
2019-02-04 14:47:27 -05:00
|
|
|
&StepSnapshotVolumes{
|
|
|
|
LaunchDevices: launchDevices,
|
|
|
|
},
|
2019-02-04 17:03:59 -05:00
|
|
|
&osccommon.StepDeregisterOMI{
|
|
|
|
AccessConfig: &b.config.AccessConfig,
|
|
|
|
ForceDeregister: b.config.OMIForceDeregister,
|
|
|
|
ForceDeleteSnapshot: b.config.OMIForceDeleteSnapshot,
|
|
|
|
OMIName: b.config.OMIName,
|
|
|
|
Regions: b.config.OMIRegions,
|
|
|
|
},
|
2019-02-04 18:12:47 -05:00
|
|
|
&StepRegisterOMI{
|
|
|
|
RootDevice: b.config.RootDevice,
|
|
|
|
OMIDevices: omiDevices,
|
|
|
|
LaunchDevices: launchDevices,
|
|
|
|
},
|
2019-02-05 14:18:44 -05:00
|
|
|
&osccommon.StepUpdateOMIAttributes{
|
|
|
|
AccountIds: b.config.OMIAccountIDs,
|
|
|
|
SnapshotAccountIds: b.config.SnapshotAccountIDs,
|
|
|
|
Ctx: b.config.ctx,
|
|
|
|
},
|
2019-02-05 15:11:43 -05:00
|
|
|
&osccommon.StepCreateTags{
|
|
|
|
Tags: b.config.OMITags,
|
|
|
|
SnapshotTags: b.config.SnapshotTags,
|
|
|
|
Ctx: b.config.ctx,
|
|
|
|
},
|
2019-01-30 13:48:51 -05:00
|
|
|
}
|
2019-01-29 16:07:32 -05:00
|
|
|
|
|
|
|
b.runner = common.NewRunner(steps, b.config.PackerConfig, ui)
|
2019-05-01 15:10:15 -04:00
|
|
|
b.runner.Run(ctx, state)
|
2019-01-29 16:07:32 -05:00
|
|
|
|
2019-01-30 13:48:51 -05:00
|
|
|
// If there was an error, return that
|
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
|
|
|
//Build the artifact
|
2019-02-05 15:43:46 -05:00
|
|
|
if omis, ok := state.GetOk("omis"); ok {
|
|
|
|
// Build the artifact and return it
|
|
|
|
artifact := &osccommon.Artifact{
|
2019-02-07 15:55:12 -05:00
|
|
|
Omis: omis.(map[string]string),
|
2019-02-05 15:43:46 -05:00
|
|
|
BuilderIdValue: BuilderId,
|
|
|
|
Config: clientConfig,
|
|
|
|
}
|
|
|
|
|
|
|
|
return artifact, nil
|
|
|
|
}
|
2019-01-30 13:48:51 -05:00
|
|
|
|
2019-01-23 16:53:41 -05:00
|
|
|
return nil, nil
|
|
|
|
}
|