2017-09-12 11:30:39 -04:00
|
|
|
// Package oci contains a packer.Builder implementation that builds Oracle
|
|
|
|
// Bare Metal Cloud Services (OCI) images.
|
|
|
|
package oci
|
2017-02-13 05:35:14 -05:00
|
|
|
|
|
|
|
import (
|
2019-03-22 09:53:28 -04:00
|
|
|
"context"
|
2017-02-13 05:35:14 -05:00
|
|
|
"fmt"
|
|
|
|
|
2018-01-12 17:12:15 -05:00
|
|
|
ocommon "github.com/hashicorp/packer/builder/oracle/common"
|
2017-04-07 06:20:33 -04:00
|
|
|
"github.com/hashicorp/packer/common"
|
|
|
|
"github.com/hashicorp/packer/helper/communicator"
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-04-07 06:20:33 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2018-04-11 05:20:40 -04:00
|
|
|
"github.com/oracle/oci-go-sdk/core"
|
2017-02-13 05:35:14 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// BuilderId uniquely identifies the builder
|
2017-09-12 11:30:39 -04:00
|
|
|
const BuilderId = "packer.oracle.oci"
|
2017-02-13 05:35:14 -05:00
|
|
|
|
2017-09-12 11:30:39 -04:00
|
|
|
// OCI API version
|
|
|
|
const ociAPIVersion = "20160918"
|
2017-02-13 05:35:14 -05:00
|
|
|
|
2017-09-12 11:30:39 -04:00
|
|
|
// Builder is a builder implementation that creates Oracle OCI custom images.
|
2017-02-13 05:35:14 -05:00
|
|
|
type Builder struct {
|
|
|
|
config *Config
|
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Prepare(rawConfig ...interface{}) ([]string, error) {
|
|
|
|
config, err := NewConfig(rawConfig...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
b.config = config
|
|
|
|
|
|
|
|
return nil, 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) {
|
2017-09-12 11:30:39 -04:00
|
|
|
driver, err := NewDriverOCI(b.config)
|
2017-02-13 05:35:14 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Populate the state bag
|
|
|
|
state := new(multistep.BasicStateBag)
|
|
|
|
state.Put("config", b.config)
|
|
|
|
state.Put("driver", driver)
|
|
|
|
state.Put("hook", hook)
|
|
|
|
state.Put("ui", ui)
|
|
|
|
|
|
|
|
// Build the steps
|
|
|
|
steps := []multistep.Step{
|
2018-01-12 17:12:15 -05:00
|
|
|
&ocommon.StepKeyPair{
|
2018-08-28 11:48:09 -04:00
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
Comm: &b.config.Comm,
|
|
|
|
DebugKeyPath: fmt.Sprintf("oci_%s.pem", b.config.PackerBuildName),
|
2017-02-13 05:35:14 -05:00
|
|
|
},
|
|
|
|
&stepCreateInstance{},
|
|
|
|
&stepInstanceInfo{},
|
2018-05-24 13:47:37 -04:00
|
|
|
&stepGetDefaultCredentials{
|
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
Comm: &b.config.Comm,
|
|
|
|
BuildName: b.config.PackerBuildName,
|
|
|
|
},
|
2017-02-13 05:35:14 -05:00
|
|
|
&communicator.StepConnect{
|
2018-08-22 11:02:23 -04:00
|
|
|
Config: &b.config.Comm,
|
2019-07-03 16:30:29 -04:00
|
|
|
Host: communicator.CommHost(b.config.Comm.SSHHost, "instance_ip"),
|
2018-08-22 11:02:23 -04:00
|
|
|
SSHConfig: b.config.Comm.SSHConfigFunc(),
|
2017-02-13 05:35:14 -05:00
|
|
|
},
|
|
|
|
&common.StepProvision{},
|
2018-09-14 14:03:23 -04:00
|
|
|
&common.StepCleanupTempKeys{
|
|
|
|
Comm: &b.config.Comm,
|
|
|
|
},
|
2017-02-13 05:35:14 -05:00
|
|
|
&stepImage{},
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run the steps
|
2017-09-05 06:08:27 -04:00
|
|
|
b.runner = common.NewRunnerWithPauseFn(steps, b.config.PackerConfig, ui, state)
|
2019-03-22 09:53:28 -04:00
|
|
|
b.runner.Run(ctx, state)
|
2017-02-13 05:35:14 -05:00
|
|
|
|
|
|
|
// If there was an error, return that
|
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
2018-04-11 05:20:40 -04:00
|
|
|
region, err := b.config.ConfigProvider.Region()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2018-12-17 17:54:27 -05:00
|
|
|
image, ok := state.GetOk("image")
|
|
|
|
if !ok {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-02-13 05:35:14 -05:00
|
|
|
// Build the artifact and return it
|
|
|
|
artifact := &Artifact{
|
2018-12-17 17:54:27 -05:00
|
|
|
Image: image.(core.Image),
|
2018-04-11 05:20:40 -04:00
|
|
|
Region: region,
|
2017-02-13 05:35:14 -05:00
|
|
|
driver: driver,
|
|
|
|
}
|
|
|
|
|
|
|
|
return artifact, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cancel terminates a running build.
|