2018-01-11 04:57:53 -05:00
|
|
|
package ncloud
|
|
|
|
|
|
|
|
import (
|
2018-01-29 08:41:22 -05:00
|
|
|
"context"
|
2018-01-11 04:57:53 -05:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2018-01-29 04:09:14 -05:00
|
|
|
"io/ioutil"
|
2018-01-11 04:57:53 -05:00
|
|
|
"log"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
ncloud "github.com/NaverCloudPlatform/ncloud-sdk-go/sdk"
|
2018-01-29 08:41:22 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2018-01-11 04:57:53 -05:00
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
)
|
|
|
|
|
|
|
|
type StepCreateServerInstance struct {
|
|
|
|
Conn *ncloud.Conn
|
2018-01-29 04:35:43 -05:00
|
|
|
CreateServerInstance func(loginKeyName string, zoneNo string, feeSystemTypeCode string) (string, error)
|
2018-01-11 04:57:53 -05:00
|
|
|
CheckServerInstanceStatusIsRunning func(serverInstanceNo string) error
|
|
|
|
Say func(message string)
|
|
|
|
Error func(e error)
|
|
|
|
Config *Config
|
|
|
|
serverInstanceNo string
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewStepCreateServerInstance(conn *ncloud.Conn, ui packer.Ui, config *Config) *StepCreateServerInstance {
|
|
|
|
var step = &StepCreateServerInstance{
|
|
|
|
Conn: conn,
|
|
|
|
Say: func(message string) { ui.Say(message) },
|
|
|
|
Error: func(e error) { ui.Error(e.Error()) },
|
|
|
|
Config: config,
|
|
|
|
}
|
|
|
|
|
|
|
|
step.CreateServerInstance = step.createServerInstance
|
|
|
|
|
|
|
|
return step
|
|
|
|
}
|
|
|
|
|
2018-01-29 04:35:43 -05:00
|
|
|
func (s *StepCreateServerInstance) createServerInstance(loginKeyName string, zoneNo string, feeSystemTypeCode string) (string, error) {
|
2018-01-11 04:57:53 -05:00
|
|
|
reqParams := new(ncloud.RequestCreateServerInstance)
|
|
|
|
reqParams.ServerProductCode = s.Config.ServerProductCode
|
|
|
|
reqParams.MemberServerImageNo = s.Config.MemberServerImageNo
|
|
|
|
if s.Config.MemberServerImageNo == "" {
|
|
|
|
reqParams.ServerImageProductCode = s.Config.ServerImageProductCode
|
|
|
|
}
|
|
|
|
reqParams.LoginKeyName = loginKeyName
|
|
|
|
reqParams.ZoneNo = zoneNo
|
2018-01-29 04:35:43 -05:00
|
|
|
reqParams.FeeSystemTypeCode = feeSystemTypeCode
|
2018-01-11 04:57:53 -05:00
|
|
|
|
|
|
|
if s.Config.UserData != "" {
|
|
|
|
reqParams.UserData = s.Config.UserData
|
|
|
|
}
|
|
|
|
|
2018-01-29 04:09:14 -05:00
|
|
|
if s.Config.UserDataFile != "" {
|
|
|
|
contents, err := ioutil.ReadFile(s.Config.UserDataFile)
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("Problem reading user data file: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
reqParams.UserData = string(contents)
|
|
|
|
}
|
|
|
|
|
2018-01-11 04:57:53 -05:00
|
|
|
if s.Config.AccessControlGroupConfigurationNo != "" {
|
|
|
|
reqParams.AccessControlGroupConfigurationNoList = []string{s.Config.AccessControlGroupConfigurationNo}
|
|
|
|
}
|
|
|
|
|
|
|
|
serverInstanceList, err := s.Conn.CreateServerInstances(reqParams)
|
|
|
|
if err != nil {
|
2018-01-11 20:15:40 -05:00
|
|
|
return "", err
|
2018-01-11 04:57:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
s.serverInstanceNo = serverInstanceList.ServerInstanceList[0].ServerInstanceNo
|
|
|
|
s.Say(fmt.Sprintf("Server Instance is creating. Server InstanceNo is %s", s.serverInstanceNo))
|
|
|
|
log.Println("Server Instance information : ", serverInstanceList.ServerInstanceList[0])
|
|
|
|
|
|
|
|
if err := waiterServerInstanceStatus(s.Conn, s.serverInstanceNo, "RUN", 30*time.Minute); err != nil {
|
|
|
|
return "", errors.New("TIMEOUT : server instance status is not running")
|
|
|
|
}
|
|
|
|
|
|
|
|
s.Say(fmt.Sprintf("Server Instance is created. Server InstanceNo is %s", s.serverInstanceNo))
|
|
|
|
|
|
|
|
return s.serverInstanceNo, nil
|
|
|
|
}
|
|
|
|
|
2019-03-29 11:50:02 -04:00
|
|
|
func (s *StepCreateServerInstance) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
|
2018-01-11 04:57:53 -05:00
|
|
|
s.Say("Create Server Instance")
|
|
|
|
|
|
|
|
var loginKey = state.Get("LoginKey").(*LoginKey)
|
|
|
|
var zoneNo = state.Get("ZoneNo").(string)
|
|
|
|
|
2018-01-29 04:35:43 -05:00
|
|
|
feeSystemTypeCode := "MTRAT"
|
|
|
|
if _, ok := state.GetOk("FeeSystemTypeCode"); ok {
|
|
|
|
feeSystemTypeCode = state.Get("FeeSystemTypeCode").(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
serverInstanceNo, err := s.CreateServerInstance(loginKey.KeyName, zoneNo, feeSystemTypeCode)
|
2018-01-11 04:57:53 -05:00
|
|
|
if err == nil {
|
|
|
|
state.Put("InstanceNo", serverInstanceNo)
|
2019-12-13 14:57:01 -05:00
|
|
|
// instance_id is the generic term used so that users can have access to the
|
|
|
|
// instance id inside of the provisioners, used in step_provision.
|
|
|
|
state.Put("instance_id", serverInstanceNo)
|
2018-01-11 04:57:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return processStepResult(err, s.Error, state)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StepCreateServerInstance) Cleanup(state multistep.StateBag) {
|
|
|
|
_, cancelled := state.GetOk(multistep.StateCancelled)
|
|
|
|
_, halted := state.GetOk(multistep.StateHalted)
|
|
|
|
|
|
|
|
if !cancelled && !halted {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.serverInstanceNo == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
reqParams := new(ncloud.RequestGetServerInstanceList)
|
|
|
|
reqParams.ServerInstanceNoList = []string{s.serverInstanceNo}
|
|
|
|
|
|
|
|
serverInstanceList, err := s.Conn.GetServerInstanceList(reqParams)
|
|
|
|
if err != nil || serverInstanceList.TotalRows == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
s.Say("Clean up Server Instance")
|
|
|
|
|
|
|
|
serverInstance := serverInstanceList.ServerInstanceList[0]
|
|
|
|
// stop server instance
|
|
|
|
if serverInstance.ServerInstanceStatus.Code != "NSTOP" && serverInstance.ServerInstanceStatus.Code != "TERMT" {
|
|
|
|
reqParams := new(ncloud.RequestStopServerInstances)
|
|
|
|
reqParams.ServerInstanceNoList = []string{s.serverInstanceNo}
|
|
|
|
|
|
|
|
log.Println("Stop Server Instance")
|
|
|
|
s.Conn.StopServerInstances(reqParams)
|
|
|
|
waiterServerInstanceStatus(s.Conn, s.serverInstanceNo, "NSTOP", time.Minute)
|
|
|
|
}
|
|
|
|
|
|
|
|
// terminate server instance
|
|
|
|
if serverInstance.ServerInstanceStatus.Code != "TERMT" {
|
|
|
|
reqParams := new(ncloud.RequestTerminateServerInstances)
|
|
|
|
reqParams.ServerInstanceNoList = []string{s.serverInstanceNo}
|
|
|
|
|
|
|
|
log.Println("Terminate Server Instance")
|
|
|
|
s.Conn.TerminateServerInstances(reqParams)
|
|
|
|
}
|
|
|
|
}
|