2019-02-07 15:56:47 -05:00
|
|
|
// The amazonebs package contains a packer.Builder implementation that
|
|
|
|
// builds OMIs for Outscale OAPI.
|
|
|
|
//
|
|
|
|
// In general, there are two types of OMIs that can be created: ebs-backed or
|
|
|
|
// instance-store. This builder _only_ builds ebs-backed images.
|
|
|
|
package bsu
|
|
|
|
|
|
|
|
import (
|
2019-02-08 17:41:06 -05:00
|
|
|
"crypto/tls"
|
2019-02-07 15:56:47 -05:00
|
|
|
"log"
|
2019-02-08 17:41:06 -05:00
|
|
|
"net/http"
|
2019-02-07 15:56:47 -05:00
|
|
|
|
|
|
|
osccommon "github.com/hashicorp/packer/builder/osc/common"
|
|
|
|
"github.com/hashicorp/packer/common"
|
2019-02-07 17:13:35 -05:00
|
|
|
"github.com/hashicorp/packer/helper/config"
|
2019-02-07 15:56:47 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
"github.com/hashicorp/packer/template/interpolate"
|
2019-02-08 17:41:06 -05:00
|
|
|
"github.com/outscale/osc-go/oapi"
|
2019-02-07 15:56:47 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// The unique ID for this builder
|
|
|
|
const BuilderId = "oapi.outscale.bsu"
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
osccommon.AccessConfig `mapstructure:",squash"`
|
|
|
|
osccommon.OMIConfig `mapstructure:",squash"`
|
|
|
|
osccommon.BlockDevices `mapstructure:",squash"`
|
|
|
|
osccommon.RunConfig `mapstructure:",squash"`
|
|
|
|
VolumeRunTags osccommon.TagMap `mapstructure:"run_volume_tags"`
|
|
|
|
|
|
|
|
ctx interpolate.Context
|
|
|
|
}
|
|
|
|
|
|
|
|
type Builder struct {
|
|
|
|
config Config
|
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
2019-02-07 17:13:35 -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",
|
|
|
|
"spot_tags",
|
|
|
|
"snapshot_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.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.RunConfig.Prepare(&b.config.ctx)...)
|
|
|
|
|
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
|
|
|
return nil, errs
|
|
|
|
}
|
|
|
|
|
|
|
|
packer.LogSecretFilter.Set(b.config.AccessKey, b.config.SecretKey, b.config.Token)
|
2019-02-07 15:56:47 -05:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packer.Artifact, error) {
|
2019-02-08 17:41:06 -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)
|
|
|
|
|
|
|
|
steps := []multistep.Step{
|
|
|
|
&osccommon.StepPreValidate{
|
|
|
|
DestOmiName: b.config.OMIName,
|
|
|
|
ForceDeregister: b.config.OMIForceDeregister,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
b.runner = common.NewRunner(steps, b.config.PackerConfig, ui)
|
|
|
|
b.runner.Run(state)
|
|
|
|
|
|
|
|
// If there was an error, return that
|
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
2019-02-07 15:56:47 -05:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Cancel() {
|
2019-02-07 17:23:36 -05:00
|
|
|
if b.runner != nil {
|
|
|
|
log.Println("Cancelling the step runner...")
|
|
|
|
b.runner.Cancel()
|
|
|
|
}
|
2019-02-07 15:56:47 -05:00
|
|
|
}
|