2017-05-09 10:23:57 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
2017-07-01 17:50:01 -04:00
|
|
|
"fmt"
|
2017-08-23 15:40:57 -04:00
|
|
|
"github.com/jetbrains-infra/packer-builder-vsphere/driver"
|
2017-05-09 10:23:57 -04:00
|
|
|
)
|
|
|
|
|
2017-07-01 18:34:50 -04:00
|
|
|
type HardwareConfig struct {
|
2017-07-01 16:43:40 -04:00
|
|
|
CPUs int32 `mapstructure:"CPUs"`
|
|
|
|
CPUReservation int64 `mapstructure:"CPU_reservation"`
|
2017-07-01 16:52:35 -04:00
|
|
|
CPULimit int64 `mapstructure:"CPU_limit"`
|
2017-07-01 16:43:40 -04:00
|
|
|
RAM int64 `mapstructure:"RAM"`
|
2017-07-01 17:02:49 -04:00
|
|
|
RAMReservation int64 `mapstructure:"RAM_reservation"`
|
2017-07-01 17:50:01 -04:00
|
|
|
RAMReserveAll bool `mapstructure:"RAM_reserve_all"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *HardwareConfig) Prepare() []error {
|
|
|
|
var errs []error
|
|
|
|
|
|
|
|
if c.RAMReservation > 0 && c.RAMReserveAll != false {
|
|
|
|
errs = append(errs, fmt.Errorf("'RAM_reservation' and 'RAM_reserve_all' cannot be used together"))
|
|
|
|
}
|
|
|
|
|
|
|
|
return errs
|
2017-05-09 10:23:57 -04:00
|
|
|
}
|
|
|
|
|
2017-07-01 18:34:50 -04:00
|
|
|
type StepConfigureHardware struct {
|
|
|
|
config *HardwareConfig
|
2017-05-19 00:44:27 -04:00
|
|
|
}
|
|
|
|
|
2017-07-01 18:34:50 -04:00
|
|
|
func (s *StepConfigureHardware) Run(state multistep.StateBag) multistep.StepAction {
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2017-08-23 20:06:50 -04:00
|
|
|
vm := state.Get("vm").(*driver.VirtualMachine)
|
2017-05-09 10:23:57 -04:00
|
|
|
|
2017-07-01 18:34:50 -04:00
|
|
|
if *s.config != (HardwareConfig{}) {
|
|
|
|
ui.Say("Customizing hardware parameters...")
|
2017-05-09 10:23:57 -04:00
|
|
|
|
2017-08-23 20:06:50 -04:00
|
|
|
err := vm.Configure(&driver.HardwareConfig{
|
2017-08-23 15:40:57 -04:00
|
|
|
CPUs: s.config.CPUs,
|
|
|
|
CPUReservation: s.config.CPUReservation,
|
|
|
|
CPULimit: s.config.CPULimit,
|
|
|
|
RAM: s.config.RAM,
|
|
|
|
RAMReservation: s.config.RAMReservation,
|
|
|
|
RAMReserveAll: s.config.RAMReserveAll,
|
|
|
|
})
|
2017-05-19 00:44:27 -04:00
|
|
|
if err != nil {
|
|
|
|
state.Put("error", err)
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
}
|
2017-05-09 10:23:57 -04:00
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2017-07-01 18:34:50 -04:00
|
|
|
func (s *StepConfigureHardware) Cleanup(multistep.StateBag) {}
|