2013-08-27 00:57:23 -04:00
|
|
|
package openstack
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2015-05-27 16:02:57 -04:00
|
|
|
|
2015-06-13 18:34:37 -04:00
|
|
|
"github.com/mitchellh/packer/helper/communicator"
|
2015-05-27 16:02:57 -04:00
|
|
|
"github.com/mitchellh/packer/template/interpolate"
|
2013-08-27 00:57:23 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// RunConfig contains configuration for running an instance from a source
|
|
|
|
// image and details on how to access that launched image.
|
|
|
|
type RunConfig struct {
|
2015-07-27 19:42:06 -04:00
|
|
|
Comm communicator.Config `mapstructure:",squash"`
|
2015-07-27 18:05:51 -04:00
|
|
|
SSHKeyPairName string `mapstructure:"ssh_keypair_name"`
|
2015-07-27 19:42:06 -04:00
|
|
|
SSHInterface string `mapstructure:"ssh_interface"`
|
2016-02-13 15:53:46 -05:00
|
|
|
SSHIPVersion string `mapstructure:"ssh_ip_version"`
|
2015-06-13 18:34:37 -04:00
|
|
|
|
2015-06-12 11:10:10 -04:00
|
|
|
SourceImage string `mapstructure:"source_image"`
|
2015-08-10 09:35:56 -04:00
|
|
|
SourceImageName string `mapstructure:"source_image_name"`
|
2015-06-12 11:10:10 -04:00
|
|
|
Flavor string `mapstructure:"flavor"`
|
|
|
|
AvailabilityZone string `mapstructure:"availability_zone"`
|
|
|
|
RackconnectWait bool `mapstructure:"rackconnect_wait"`
|
|
|
|
FloatingIpPool string `mapstructure:"floating_ip_pool"`
|
|
|
|
FloatingIp string `mapstructure:"floating_ip"`
|
|
|
|
SecurityGroups []string `mapstructure:"security_groups"`
|
|
|
|
Networks []string `mapstructure:"networks"`
|
2015-06-12 22:55:39 -04:00
|
|
|
UserData string `mapstructure:"user_data"`
|
|
|
|
UserDataFile string `mapstructure:"user_data_file"`
|
2015-06-12 10:05:03 -04:00
|
|
|
|
2015-12-08 07:45:26 -05:00
|
|
|
ConfigDrive bool `mapstructure:"config_drive"`
|
|
|
|
|
2015-06-12 10:05:03 -04:00
|
|
|
// Not really used, but here for BC
|
|
|
|
OpenstackProvider string `mapstructure:"openstack_provider"`
|
|
|
|
UseFloatingIp bool `mapstructure:"use_floating_ip"`
|
2013-08-27 00:57:23 -04:00
|
|
|
}
|
|
|
|
|
2015-05-27 16:02:57 -04:00
|
|
|
func (c *RunConfig) Prepare(ctx *interpolate.Context) []error {
|
2013-08-27 00:57:23 -04:00
|
|
|
// Defaults
|
2015-06-13 18:34:37 -04:00
|
|
|
if c.Comm.SSHUsername == "" {
|
|
|
|
c.Comm.SSHUsername = "root"
|
2013-08-27 00:57:23 -04:00
|
|
|
}
|
|
|
|
|
2014-02-27 03:34:24 -05:00
|
|
|
if c.UseFloatingIp && c.FloatingIpPool == "" {
|
|
|
|
c.FloatingIpPool = "public"
|
|
|
|
}
|
|
|
|
|
2013-08-27 00:57:23 -04:00
|
|
|
// Validation
|
2015-06-13 18:34:37 -04:00
|
|
|
errs := c.Comm.Prepare(ctx)
|
2015-08-10 09:35:56 -04:00
|
|
|
if c.SourceImage == "" && c.SourceImageName == "" {
|
|
|
|
errs = append(errs, errors.New("Either a source_image or a source_image_name must be specified"))
|
|
|
|
} else if len(c.SourceImage) > 0 && len(c.SourceImageName) > 0 {
|
|
|
|
errs = append(errs, errors.New("Only a source_image or a source_image_name can be specified, not both."))
|
2013-08-27 00:57:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if c.Flavor == "" {
|
|
|
|
errs = append(errs, errors.New("A flavor must be specified"))
|
|
|
|
}
|
|
|
|
|
2016-02-14 15:23:56 -05:00
|
|
|
if c.SSHIPVersion != "" && c.SSHIPVersion != "4" && c.SSHIPVersion != "6" {
|
|
|
|
errs = append(errs, errors.New("SSH IP version must be either 4 or 6"))
|
|
|
|
}
|
|
|
|
|
2013-08-27 00:57:23 -04:00
|
|
|
return errs
|
|
|
|
}
|