packer-cn/builder/vmware/common/run_config.go

59 lines
1.9 KiB
Go
Raw Normal View History

//go:generate struct-markdown
2013-12-26 17:26:09 -05:00
package common
import (
"fmt"
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/template/interpolate"
2013-12-26 17:26:09 -05:00
)
type RunConfig struct {
// Packer defaults to building VMware virtual machines
2019-06-06 10:29:25 -04:00
// by launching a GUI that shows the console of the machine being built. When
// this value is set to true, the machine will start without a console. For
// VMware machines, Packer will output VNC connection information in case you
// need to connect to the console to debug the build process.
Headless bool `mapstructure:"headless" required:"false"`
// The IP address that should be
2019-06-06 10:29:25 -04:00
// binded to for VNC. By default packer will use 127.0.0.1 for this. If you
// wish to bind to all interfaces use 0.0.0.0.
VNCBindAddress string `mapstructure:"vnc_bind_address" required:"false"`
// The minimum and maximum port
2019-06-06 10:29:25 -04:00
// to use for VNC access to the virtual machine. The builder uses VNC to type
// the initial boot_command. Because Packer generally runs in parallel,
// Packer uses a randomly chosen port in this range that appears available. By
// default this is 5900 to 6000. The minimum and maximum ports are
// inclusive.
VNCPortMin int `mapstructure:"vnc_port_min" required:"false"`
VNCPortMax int `mapstructure:"vnc_port_max"`
// Don't auto-generate a VNC password that
2019-06-06 10:29:25 -04:00
// is used to secure the VNC communication with the VM. This must be set to
// true if building on ESXi 6.5 and 6.7 with VNC enabled. Defaults to
// false.
VNCDisablePassword bool `mapstructure:"vnc_disable_password" required:"false"`
2013-12-26 17:26:09 -05:00
}
func (c *RunConfig) Prepare(ctx *interpolate.Context) (errs []error) {
2014-09-05 15:10:40 -04:00
if c.VNCPortMin == 0 {
c.VNCPortMin = 5900
}
if c.VNCPortMax == 0 {
c.VNCPortMax = 6000
}
if c.VNCBindAddress == "" {
c.VNCBindAddress = "127.0.0.1"
}
2014-09-05 15:10:40 -04:00
if c.VNCPortMin > c.VNCPortMax {
errs = append(errs, fmt.Errorf("vnc_port_min must be less than vnc_port_max"))
2014-09-05 15:10:40 -04:00
}
2019-03-19 10:21:09 -04:00
if c.VNCPortMin < 0 {
errs = append(errs, fmt.Errorf("vnc_port_min must be positive"))
}
2014-09-05 15:10:40 -04:00
return
2013-12-26 17:26:09 -05:00
}