2018-01-11 04:57:53 -05:00
|
|
|
package ncloud
|
|
|
|
|
|
|
|
import (
|
2019-03-22 09:53:28 -04:00
|
|
|
"context"
|
|
|
|
|
2018-01-11 04:57:53 -05:00
|
|
|
ncloud "github.com/NaverCloudPlatform/ncloud-sdk-go/sdk"
|
|
|
|
"github.com/hashicorp/packer/common"
|
|
|
|
"github.com/hashicorp/packer/helper/communicator"
|
2018-01-29 08:41:22 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2018-01-29 08:44:24 -05:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2018-01-11 04:57:53 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// Builder assume this implements packer.Builder
|
|
|
|
type Builder struct {
|
|
|
|
config *Config
|
|
|
|
stateBag multistep.StateBag
|
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
|
|
|
c, warnings, errs := NewConfig(raws...)
|
|
|
|
if errs != nil {
|
|
|
|
return warnings, errs
|
|
|
|
}
|
|
|
|
b.config = c
|
|
|
|
|
|
|
|
b.stateBag = new(multistep.BasicStateBag)
|
|
|
|
|
|
|
|
return warnings, nil
|
|
|
|
}
|
|
|
|
|
2019-03-22 09:53:28 -04:00
|
|
|
func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (packer.Artifact, error) {
|
2018-01-11 04:57:53 -05:00
|
|
|
ui.Message("Creating Naver Cloud Platform Connection ...")
|
|
|
|
conn := ncloud.NewConnection(b.config.AccessKey, b.config.SecretKey)
|
|
|
|
|
|
|
|
b.stateBag.Put("hook", hook)
|
|
|
|
b.stateBag.Put("ui", ui)
|
|
|
|
|
|
|
|
var steps []multistep.Step
|
|
|
|
|
|
|
|
steps = []multistep.Step{}
|
|
|
|
|
2018-01-29 03:29:26 -05:00
|
|
|
if b.config.Comm.Type == "ssh" {
|
2018-01-11 04:57:53 -05:00
|
|
|
steps = []multistep.Step{
|
|
|
|
NewStepValidateTemplate(conn, ui, b.config),
|
|
|
|
NewStepCreateLoginKey(conn, ui),
|
|
|
|
NewStepCreateServerInstance(conn, ui, b.config),
|
|
|
|
NewStepCreateBlockStorageInstance(conn, ui, b.config),
|
2018-12-21 03:53:52 -05:00
|
|
|
NewStepGetRootPassword(conn, ui, b.config),
|
2018-01-11 04:57:53 -05:00
|
|
|
NewStepCreatePublicIPInstance(conn, ui, b.config),
|
|
|
|
&communicator.StepConnectSSH{
|
2018-01-29 08:07:32 -05:00
|
|
|
Config: &b.config.Comm,
|
|
|
|
Host: func(stateBag multistep.StateBag) (string, error) {
|
|
|
|
return stateBag.Get("PublicIP").(string), nil
|
|
|
|
},
|
2018-08-24 10:00:40 -04:00
|
|
|
SSHConfig: b.config.Comm.SSHConfigFunc(),
|
2018-01-11 04:57:53 -05:00
|
|
|
},
|
|
|
|
&common.StepProvision{},
|
2018-09-14 14:03:23 -04:00
|
|
|
&common.StepCleanupTempKeys{
|
|
|
|
Comm: &b.config.Comm,
|
|
|
|
},
|
2018-01-11 04:57:53 -05:00
|
|
|
NewStepStopServerInstance(conn, ui),
|
|
|
|
NewStepCreateServerImage(conn, ui, b.config),
|
|
|
|
NewStepDeleteBlockStorageInstance(conn, ui, b.config),
|
|
|
|
NewStepTerminateServerInstance(conn, ui),
|
|
|
|
}
|
2018-02-06 20:29:56 -05:00
|
|
|
} else if b.config.Comm.Type == "winrm" {
|
2018-01-11 04:57:53 -05:00
|
|
|
steps = []multistep.Step{
|
|
|
|
NewStepValidateTemplate(conn, ui, b.config),
|
|
|
|
NewStepCreateLoginKey(conn, ui),
|
|
|
|
NewStepCreateServerInstance(conn, ui, b.config),
|
|
|
|
NewStepCreateBlockStorageInstance(conn, ui, b.config),
|
2018-12-21 03:53:52 -05:00
|
|
|
NewStepGetRootPassword(conn, ui, b.config),
|
2018-01-11 04:57:53 -05:00
|
|
|
NewStepCreatePublicIPInstance(conn, ui, b.config),
|
|
|
|
&communicator.StepConnectWinRM{
|
|
|
|
Config: &b.config.Comm,
|
|
|
|
Host: func(stateBag multistep.StateBag) (string, error) {
|
2018-01-29 08:07:32 -05:00
|
|
|
return stateBag.Get("PublicIP").(string), nil
|
2018-01-11 04:57:53 -05:00
|
|
|
},
|
|
|
|
WinRMConfig: func(state multistep.StateBag) (*communicator.WinRMConfig, error) {
|
|
|
|
return &communicator.WinRMConfig{
|
|
|
|
Username: b.config.Comm.WinRMUser,
|
2018-12-21 03:53:52 -05:00
|
|
|
Password: b.config.Comm.WinRMPassword,
|
2018-01-11 04:57:53 -05:00
|
|
|
}, nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&common.StepProvision{},
|
|
|
|
NewStepStopServerInstance(conn, ui),
|
|
|
|
NewStepCreateServerImage(conn, ui, b.config),
|
|
|
|
NewStepDeleteBlockStorageInstance(conn, ui, b.config),
|
|
|
|
NewStepTerminateServerInstance(conn, ui),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run!
|
2018-01-29 03:29:26 -05:00
|
|
|
b.runner = common.NewRunnerWithPauseFn(steps, b.config.PackerConfig, ui, b.stateBag)
|
2019-03-22 09:53:28 -04:00
|
|
|
b.runner.Run(ctx, b.stateBag)
|
2018-01-11 04:57:53 -05:00
|
|
|
|
|
|
|
// If there was an error, return that
|
|
|
|
if rawErr, ok := b.stateBag.GetOk("Error"); ok {
|
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the artifact and return it
|
|
|
|
artifact := &Artifact{}
|
|
|
|
|
|
|
|
if serverImage, ok := b.stateBag.GetOk("memberServerImage"); ok {
|
|
|
|
artifact.ServerImage = serverImage.(*ncloud.ServerImage)
|
|
|
|
}
|
|
|
|
|
|
|
|
return artifact, nil
|
|
|
|
}
|