2013-11-11 03:56:51 -05:00
|
|
|
package vsphere
|
|
|
|
|
|
|
|
import (
|
2017-10-23 18:38:37 -04:00
|
|
|
"bytes"
|
2013-11-18 18:57:31 -05:00
|
|
|
"fmt"
|
2014-07-17 15:33:09 -04:00
|
|
|
"log"
|
|
|
|
"net/url"
|
2013-11-18 18:57:31 -05:00
|
|
|
"os/exec"
|
|
|
|
"strings"
|
2015-05-27 17:56:22 -04:00
|
|
|
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/common"
|
|
|
|
"github.com/hashicorp/packer/helper/config"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
"github.com/hashicorp/packer/template/interpolate"
|
2013-11-11 03:56:51 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
var builtins = map[string]string{
|
2015-02-13 05:13:58 -05:00
|
|
|
"mitchellh.vmware": "vmware",
|
|
|
|
"mitchellh.vmware-esx": "vmware",
|
2013-11-11 03:56:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type Config struct {
|
2013-11-18 18:57:31 -05:00
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
|
2015-06-24 06:50:19 -04:00
|
|
|
Cluster string `mapstructure:"cluster"`
|
|
|
|
Datacenter string `mapstructure:"datacenter"`
|
|
|
|
Datastore string `mapstructure:"datastore"`
|
|
|
|
DiskMode string `mapstructure:"disk_mode"`
|
|
|
|
Host string `mapstructure:"host"`
|
|
|
|
Insecure bool `mapstructure:"insecure"`
|
|
|
|
Options []string `mapstructure:"options"`
|
|
|
|
Overwrite bool `mapstructure:"overwrite"`
|
|
|
|
Password string `mapstructure:"password"`
|
|
|
|
ResourcePool string `mapstructure:"resource_pool"`
|
|
|
|
Username string `mapstructure:"username"`
|
|
|
|
VMFolder string `mapstructure:"vm_folder"`
|
|
|
|
VMName string `mapstructure:"vm_name"`
|
|
|
|
VMNetwork string `mapstructure:"vm_network"`
|
2013-12-02 06:39:52 -05:00
|
|
|
|
2015-05-27 17:56:22 -04:00
|
|
|
ctx interpolate.Context
|
2013-11-11 03:56:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type PostProcessor struct {
|
2013-11-18 18:57:31 -05:00
|
|
|
config Config
|
2013-11-11 03:56:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PostProcessor) Configure(raws ...interface{}) error {
|
2015-05-27 17:56:22 -04:00
|
|
|
err := config.Decode(&p.config, &config.DecodeOpts{
|
2015-06-22 15:24:27 -04:00
|
|
|
Interpolate: true,
|
|
|
|
InterpolateContext: &p.config.ctx,
|
2015-05-27 17:56:22 -04:00
|
|
|
InterpolateFilter: &interpolate.RenderFilter{
|
|
|
|
Exclude: []string{},
|
|
|
|
},
|
|
|
|
}, raws...)
|
2013-11-18 18:57:31 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-12-02 06:39:52 -05:00
|
|
|
|
2014-01-03 02:07:36 -05:00
|
|
|
// Defaults
|
|
|
|
if p.config.DiskMode == "" {
|
|
|
|
p.config.DiskMode = "thick"
|
|
|
|
}
|
|
|
|
|
2013-11-18 18:57:31 -05:00
|
|
|
// Accumulate any errors
|
|
|
|
errs := new(packer.MultiError)
|
2013-12-02 06:39:52 -05:00
|
|
|
|
2013-11-18 19:04:38 -05:00
|
|
|
if _, err := exec.LookPath("ovftool"); err != nil {
|
2013-11-18 18:57:31 -05:00
|
|
|
errs = packer.MultiErrorAppend(
|
2013-11-18 19:04:38 -05:00
|
|
|
errs, fmt.Errorf("ovftool not found: %s", err))
|
2013-11-18 18:57:31 -05:00
|
|
|
}
|
|
|
|
|
2014-04-30 18:52:01 -04:00
|
|
|
// First define all our templatable parameters that are _required_
|
2013-12-11 17:01:14 -05:00
|
|
|
templates := map[string]*string{
|
2015-06-22 15:37:52 -04:00
|
|
|
"cluster": &p.config.Cluster,
|
|
|
|
"datacenter": &p.config.Datacenter,
|
|
|
|
"diskmode": &p.config.DiskMode,
|
|
|
|
"host": &p.config.Host,
|
|
|
|
"password": &p.config.Password,
|
|
|
|
"username": &p.config.Username,
|
|
|
|
"vm_name": &p.config.VMName,
|
2013-11-18 18:57:31 -05:00
|
|
|
}
|
2013-12-11 17:01:14 -05:00
|
|
|
for key, ptr := range templates {
|
|
|
|
if *ptr == "" {
|
2013-11-18 18:57:31 -05:00
|
|
|
errs = packer.MultiErrorAppend(
|
2013-12-11 17:01:14 -05:00
|
|
|
errs, fmt.Errorf("%s must be set", key))
|
|
|
|
}
|
2014-04-30 08:02:09 -04:00
|
|
|
}
|
|
|
|
|
2013-11-18 18:57:31 -05:00
|
|
|
if len(errs.Errors) > 0 {
|
|
|
|
return errs
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2013-11-11 03:56:51 -05:00
|
|
|
}
|
|
|
|
|
2013-11-18 18:57:31 -05:00
|
|
|
func (p *PostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifact) (packer.Artifact, bool, error) {
|
2013-11-18 19:04:38 -05:00
|
|
|
if _, ok := builtins[artifact.BuilderId()]; !ok {
|
2013-11-18 18:57:31 -05:00
|
|
|
return nil, false, fmt.Errorf("Unknown artifact type, can't build box: %s", artifact.BuilderId())
|
|
|
|
}
|
|
|
|
|
2015-02-13 05:13:58 -05:00
|
|
|
source := ""
|
2013-11-18 18:57:31 -05:00
|
|
|
for _, path := range artifact.Files() {
|
2015-02-13 05:13:58 -05:00
|
|
|
if strings.HasSuffix(path, ".vmx") || strings.HasSuffix(path, ".ovf") || strings.HasSuffix(path, ".ova") {
|
|
|
|
source = path
|
2013-11-18 19:04:38 -05:00
|
|
|
break
|
2013-11-18 18:57:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-13 05:13:58 -05:00
|
|
|
if source == "" {
|
|
|
|
return nil, false, fmt.Errorf("VMX, OVF or OVA file not found")
|
2013-11-18 18:57:31 -05:00
|
|
|
}
|
|
|
|
|
2018-04-05 13:04:12 -04:00
|
|
|
password := escapeWithSpaces(p.config.Password)
|
2015-06-22 13:13:49 -04:00
|
|
|
ovftool_uri := fmt.Sprintf("vi://%s:%s@%s/%s/host/%s",
|
2018-04-05 13:04:12 -04:00
|
|
|
escapeWithSpaces(p.config.Username),
|
2017-02-10 04:01:03 -05:00
|
|
|
password,
|
2015-06-22 15:37:52 -04:00
|
|
|
p.config.Host,
|
|
|
|
p.config.Datacenter,
|
|
|
|
p.config.Cluster)
|
2015-06-22 13:13:49 -04:00
|
|
|
|
|
|
|
if p.config.ResourcePool != "" {
|
|
|
|
ovftool_uri += "/Resources/" + p.config.ResourcePool
|
|
|
|
}
|
|
|
|
|
2016-05-18 21:26:46 -04:00
|
|
|
args, err := p.BuildArgs(source, ovftool_uri)
|
|
|
|
if err != nil {
|
|
|
|
ui.Message(fmt.Sprintf("Failed: %s\n", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
ui.Message(fmt.Sprintf("Uploading %s to vSphere", source))
|
|
|
|
|
2017-10-24 14:38:56 -04:00
|
|
|
log.Printf("Starting ovftool with parameters: %s", p.filterLog(strings.Join(args, " ")))
|
2017-10-23 18:38:37 -04:00
|
|
|
|
|
|
|
var out bytes.Buffer
|
2016-05-18 21:26:46 -04:00
|
|
|
cmd := exec.Command("ovftool", args...)
|
2017-10-23 18:38:37 -04:00
|
|
|
cmd.Stdout = &out
|
2016-05-18 21:26:46 -04:00
|
|
|
if err := cmd.Run(); err != nil {
|
2017-10-24 14:38:56 -04:00
|
|
|
return nil, false, fmt.Errorf("Failed: %s\n%s\n", err, p.filterLog(out.String()))
|
2016-05-18 21:26:46 -04:00
|
|
|
}
|
|
|
|
|
2017-10-24 14:38:56 -04:00
|
|
|
ui.Message(p.filterLog(out.String()))
|
2017-10-23 18:38:37 -04:00
|
|
|
|
2017-11-10 20:57:39 -05:00
|
|
|
artifact = NewArtifact(p.config.Datastore, p.config.VMFolder, p.config.VMName, artifact.Files())
|
|
|
|
|
2016-05-18 21:26:46 -04:00
|
|
|
return artifact, false, nil
|
|
|
|
}
|
|
|
|
|
2017-10-24 14:38:56 -04:00
|
|
|
func (p *PostProcessor) filterLog(s string) string {
|
2018-04-05 13:04:12 -04:00
|
|
|
password := escapeWithSpaces(p.config.Password)
|
2017-10-24 14:38:56 -04:00
|
|
|
return strings.Replace(s, password, "<password>", -1)
|
|
|
|
}
|
|
|
|
|
2016-05-18 21:26:46 -04:00
|
|
|
func (p *PostProcessor) BuildArgs(source, ovftool_uri string) ([]string, error) {
|
2013-11-18 19:04:38 -05:00
|
|
|
args := []string{
|
|
|
|
"--acceptAllEulas",
|
2016-05-18 21:26:46 -04:00
|
|
|
fmt.Sprintf(`--name=%s`, p.config.VMName),
|
|
|
|
fmt.Sprintf(`--datastore=%s`, p.config.Datastore),
|
2013-11-29 11:33:26 -05:00
|
|
|
}
|
2013-12-02 06:39:52 -05:00
|
|
|
|
2016-05-18 21:26:46 -04:00
|
|
|
if p.config.Insecure {
|
|
|
|
args = append(args, fmt.Sprintf(`--noSSLVerify=%t`, p.config.Insecure))
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.config.DiskMode != "" {
|
|
|
|
args = append(args, fmt.Sprintf(`--diskMode=%s`, p.config.DiskMode))
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.config.VMFolder != "" {
|
|
|
|
args = append(args, fmt.Sprintf(`--vmFolder=%s`, p.config.VMFolder))
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.config.VMNetwork != "" {
|
|
|
|
args = append(args, fmt.Sprintf(`--network=%s`, p.config.VMNetwork))
|
|
|
|
}
|
2015-06-24 03:28:14 -04:00
|
|
|
|
|
|
|
if p.config.Overwrite == true {
|
2015-10-29 05:42:26 -04:00
|
|
|
args = append(args, "--overwrite")
|
2015-06-24 03:28:14 -04:00
|
|
|
}
|
|
|
|
|
2015-06-24 06:50:19 -04:00
|
|
|
if len(p.config.Options) > 0 {
|
2015-10-29 05:42:26 -04:00
|
|
|
args = append(args, p.config.Options...)
|
2015-06-24 06:50:19 -04:00
|
|
|
}
|
|
|
|
|
2016-05-18 21:26:46 -04:00
|
|
|
args = append(args, fmt.Sprintf(`%s`, source))
|
|
|
|
args = append(args, fmt.Sprintf(`%s`, ovftool_uri))
|
2013-11-18 18:57:31 -05:00
|
|
|
|
2016-05-18 21:26:46 -04:00
|
|
|
return args, nil
|
2013-11-11 03:56:51 -05:00
|
|
|
}
|
2018-04-05 13:04:12 -04:00
|
|
|
|
|
|
|
// Encode everything except for + signs
|
|
|
|
func escapeWithSpaces(stringToEscape string) string {
|
|
|
|
escapedString := url.QueryEscape(stringToEscape)
|
|
|
|
escapedString = strings.Replace(escapedString, "+", `%20`, -1)
|
|
|
|
return escapedString
|
|
|
|
}
|