packer-cn/step_hardware.go

58 lines
1.5 KiB
Go
Raw Normal View History

package main
import (
"github.com/mitchellh/multistep"
"github.com/hashicorp/packer/packer"
2017-07-01 17:50:01 -04:00
"fmt"
"github.com/jetbrains-infra/packer-builder-vsphere/driver"
)
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-07-01 18:34:50 -04:00
type StepConfigureHardware struct {
config *HardwareConfig
}
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-07-01 18:34:50 -04:00
if *s.config != (HardwareConfig{}) {
ui.Say("Customizing hardware parameters...")
2017-08-23 20:06:50 -04:00
err := vm.Configure(&driver.HardwareConfig{
CPUs: s.config.CPUs,
CPUReservation: s.config.CPUReservation,
CPULimit: s.config.CPULimit,
RAM: s.config.RAM,
RAMReservation: s.config.RAMReservation,
RAMReserveAll: s.config.RAMReserveAll,
})
if err != nil {
state.Put("error", err)
return multistep.ActionHalt
}
}
return multistep.ActionContinue
}
2017-07-01 18:34:50 -04:00
func (s *StepConfigureHardware) Cleanup(multistep.StateBag) {}