packer-cn/post-processor/vsphere-tpl/post-processor.go

126 lines
2.8 KiB
Go
Raw Normal View History

2017-07-09 14:12:37 -04:00
package vsphere_tpl
import (
"context"
2017-07-09 14:12:37 -04:00
"fmt"
"net/url"
"time"
2017-07-09 14:12:37 -04:00
"github.com/hashicorp/packer/common"
"github.com/hashicorp/packer/helper/config"
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/template/interpolate"
2017-07-09 14:56:39 -04:00
"github.com/mitchellh/multistep"
"github.com/vmware/govmomi"
2017-07-09 14:12:37 -04:00
)
2017-07-09 14:12:37 -04:00
type Config struct {
common.PackerConfig `mapstructure:",squash"`
Host string `mapstructure:"host"`
Insecure bool `mapstructure:"insecure"`
2017-07-09 14:12:37 -04:00
Username string `mapstructure:"username"`
Password string `mapstructure:"password"`
Datacenter string `mapstructure:"datacenter"`
VMName string `mapstructure:"vm_name"`
Folder string `mapstructure:"folder"`
ctx interpolate.Context
}
type PostProcessor struct {
config Config
url *url.URL
}
func (p *PostProcessor) Configure(raws ...interface{}) error {
err := config.Decode(&p.config, &config.DecodeOpts{
Interpolate: true,
InterpolateContext: &p.config.ctx,
InterpolateFilter: &interpolate.RenderFilter{
Exclude: []string{},
},
}, raws...)
if err != nil {
return err
}
errs := new(packer.MultiError)
vc := map[string]*string{
"host": &p.config.Host,
"username": &p.config.Username,
"password": &p.config.Password,
}
for key, ptr := range vc {
if *ptr == "" {
errs = packer.MultiErrorAppend(
errs, fmt.Errorf("%s must be set", key))
}
}
2017-07-09 14:56:39 -04:00
if err := p.configureURL(); err != nil {
errs = packer.MultiErrorAppend(
errs, err)
}
2017-07-09 14:12:37 -04:00
if len(errs.Errors) > 0 {
return errs
}
return nil
}
func (p *PostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifact) (packer.Artifact, bool, error) {
ctx := context.Background()
2017-07-09 14:56:39 -04:00
//FIXME I've trash environment, so I need to wait :(
ui.Message("Waiting 10s for VMWare vSphere to start")
time.Sleep(10 * time.Second)
c, err := govmomi.NewClient(ctx, p.url, p.config.Insecure)
if err != nil {
return artifact, true, fmt.Errorf("Error trying to connect: %s", err)
}
state := new(multistep.BasicStateBag)
state.Put("ui", ui)
state.Put("context", ctx)
state.Put("client", c)
2017-07-09 14:56:39 -04:00
steps := []multistep.Step{
&StepPickDatacenter{
2017-07-09 14:56:39 -04:00
Datacenter: p.config.Datacenter,
},
&StepFetchVm{
VMName: p.config.VMName,
},
&StepCreateFolder{
Folder: p.config.Folder,
2017-07-09 14:56:39 -04:00
},
&StepMarkAsTemplate{},
&StepMoveTemplate{
Folder: p.config.Folder,
2017-07-09 14:56:39 -04:00
},
}
runner := &multistep.BasicRunner{Steps: steps}
runner.Run(state)
2017-07-09 14:12:37 -04:00
2017-07-09 14:56:39 -04:00
if rawErr, ok := state.GetOk("error"); ok {
return artifact, true, rawErr.(error)
}
2017-07-09 14:12:37 -04:00
return artifact, true, nil
}
2017-07-09 14:56:39 -04:00
func (p *PostProcessor) configureURL() error {
sdk, err := url.Parse(fmt.Sprintf("https://%v/sdk", p.config.Host))
2017-07-09 14:56:39 -04:00
if err != nil {
return nil
}
sdk.User = url.UserPassword(p.config.Username, p.config.Password)
p.url = sdk
return nil
}