2017-03-03 03:56:17 -05:00
|
|
|
package ecs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/denverdino/aliyungo/common"
|
|
|
|
"github.com/denverdino/aliyungo/ecs"
|
2017-04-17 09:04:52 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2017-03-03 03:56:17 -05:00
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
)
|
|
|
|
|
|
|
|
type setpConfigAlicloudEIP struct {
|
|
|
|
AssociatePublicIpAddress bool
|
|
|
|
RegionId string
|
2017-05-25 06:27:54 -04:00
|
|
|
InternetChargeType string
|
2017-03-03 03:56:17 -05:00
|
|
|
allocatedId string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *setpConfigAlicloudEIP) Run(state multistep.StateBag) multistep.StepAction {
|
|
|
|
client := state.Get("client").(*ecs.Client)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
instance := state.Get("instance").(*ecs.InstanceAttributesType)
|
|
|
|
ui.Say("Start allocated alicloud eip")
|
|
|
|
ipaddress, allocateId, err := client.AllocateEipAddress(&ecs.AllocateEipAddressArgs{
|
2017-05-25 06:27:54 -04:00
|
|
|
RegionId: common.Region(s.RegionId), InternetChargeType: common.InternetChargeType(s.InternetChargeType),
|
2017-03-03 03:56:17 -05:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Say(fmt.Sprintf("Error allocate eip: %s", err))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
s.allocatedId = allocateId
|
2017-05-25 22:59:53 -04:00
|
|
|
if err = client.WaitForEip(common.Region(s.RegionId), allocateId,
|
|
|
|
ecs.EipStatusAvailable, ALICLOUD_DEFAULT_SHORT_TIMEOUT); err != nil {
|
2017-03-03 03:56:17 -05:00
|
|
|
state.Put("error", err)
|
|
|
|
ui.Say(fmt.Sprintf("Error allocate alicloud eip: %s", err))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = client.AssociateEipAddress(allocateId, instance.InstanceId); err != nil {
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Say(fmt.Sprintf("Error binding alicloud eip: %s", err))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2017-05-25 22:59:53 -04:00
|
|
|
if err = client.WaitForEip(common.Region(s.RegionId), allocateId,
|
|
|
|
ecs.EipStatusInUse, ALICLOUD_DEFAULT_SHORT_TIMEOUT); err != nil {
|
2017-03-03 03:56:17 -05:00
|
|
|
state.Put("error", err)
|
|
|
|
ui.Say(fmt.Sprintf("Error associating alicloud eip: %s", err))
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
ui.Say(fmt.Sprintf("Allocated alicloud eip %s", ipaddress))
|
|
|
|
state.Put("ipaddress", ipaddress)
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *setpConfigAlicloudEIP) Cleanup(state multistep.StateBag) {
|
|
|
|
if len(s.allocatedId) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
client := state.Get("client").(*ecs.Client)
|
|
|
|
instance := state.Get("instance").(*ecs.InstanceAttributesType)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
|
|
|
|
message(state, "EIP")
|
|
|
|
|
|
|
|
if err := client.UnassociateEipAddress(s.allocatedId, instance.InstanceId); err != nil {
|
|
|
|
ui.Say(fmt.Sprintf("Unassociate alicloud eip failed "))
|
|
|
|
}
|
|
|
|
|
2017-05-25 22:59:53 -04:00
|
|
|
if err := client.WaitForEip(common.Region(s.RegionId), s.allocatedId,
|
|
|
|
ecs.EipStatusAvailable, ALICLOUD_DEFAULT_SHORT_TIMEOUT); err != nil {
|
2017-03-03 03:56:17 -05:00
|
|
|
ui.Say(fmt.Sprintf("Unassociate alicloud eip timeout "))
|
|
|
|
}
|
|
|
|
if err := client.ReleaseEipAddress(s.allocatedId); err != nil {
|
|
|
|
ui.Say(fmt.Sprintf("Release alicloud eip failed "))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|