212 lines
5.2 KiB
Go
212 lines
5.2 KiB
Go
// Copyright (c) 2017 Oracle America, Inc.
|
|
// The contents of this file are subject to the Mozilla Public License Version
|
|
// 2.0 (the "License"); you may not use this file except in compliance with the
|
|
// License. If a copy of the MPL was not distributed with this file, You can
|
|
// obtain one at http://mozilla.org/MPL/2.0/
|
|
|
|
package bmcs
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
client "github.com/mitchellh/packer/builder/oracle/bmcs/client"
|
|
"github.com/mitchellh/packer/common"
|
|
"github.com/mitchellh/packer/helper/communicator"
|
|
"github.com/mitchellh/packer/helper/config"
|
|
"github.com/mitchellh/packer/packer"
|
|
"github.com/mitchellh/packer/template/interpolate"
|
|
|
|
"github.com/mitchellh/go-homedir"
|
|
)
|
|
|
|
type Config struct {
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
Comm communicator.Config `mapstructure:",squash"`
|
|
|
|
AccessCfg *client.Config
|
|
|
|
AccessCfgFile string `mapstructure:"access_cfg_file"`
|
|
AccessCfgFileAccount string `mapstructure:"access_cfg_file_account"`
|
|
|
|
// Access config overrides
|
|
UserID string `mapstructure:"user_ocid"`
|
|
TenancyID string `mapstructure:"tenancy_ocid"`
|
|
Region string `mapstructure:"region"`
|
|
Fingerprint string `mapstructure:"fingerprint"`
|
|
KeyFile string `mapstructure:"key_file"`
|
|
|
|
AvailabilityDomain string `mapstructure:"availability_domain"`
|
|
CompartmentID string `mapstructure:"compartment_ocid"`
|
|
|
|
// Image
|
|
BaseImageID string `mapstructure:"base_image_ocid"`
|
|
Shape string `mapstructure:"shape"`
|
|
ImageName string `mapstructure:"image_name"`
|
|
|
|
// Networking
|
|
SubnetID string `mapstructure:"subnet_ocid"`
|
|
|
|
ctx interpolate.Context
|
|
}
|
|
|
|
func NewConfig(raws ...interface{}) (*Config, error) {
|
|
c := &Config{}
|
|
|
|
// Decode from template
|
|
err := config.Decode(c, &config.DecodeOpts{
|
|
Interpolate: true,
|
|
InterpolateContext: &c.ctx,
|
|
}, raws...)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Failed to mapstructure Config: %+v", err)
|
|
}
|
|
|
|
// Determine where the SDK config is located
|
|
var accessCfgFile string
|
|
if c.AccessCfgFile != "" {
|
|
accessCfgFile = c.AccessCfgFile
|
|
} else {
|
|
accessCfgFile, err = getDefaultBMCSSettingsPath()
|
|
if err != nil {
|
|
accessCfgFile = "" // Access cfg might be in template
|
|
}
|
|
}
|
|
|
|
accessCfg := &client.Config{}
|
|
|
|
if accessCfgFile != "" {
|
|
loadedAccessCfgs, err := client.LoadConfigsFromFile(accessCfgFile)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Invalid config file %s: %s", accessCfgFile, err)
|
|
}
|
|
cfgAccount := "DEFAULT"
|
|
if c.AccessCfgFileAccount != "" {
|
|
cfgAccount = c.AccessCfgFileAccount
|
|
}
|
|
|
|
var ok bool
|
|
accessCfg, ok = loadedAccessCfgs[cfgAccount]
|
|
if !ok {
|
|
return nil, fmt.Errorf("No account section '%s' found in config file %s", cfgAccount, accessCfgFile)
|
|
}
|
|
}
|
|
|
|
// Override SDK client config with any non-empty template properties
|
|
|
|
if c.UserID != "" {
|
|
accessCfg.User = c.UserID
|
|
}
|
|
|
|
if c.TenancyID != "" {
|
|
accessCfg.Tenancy = c.TenancyID
|
|
}
|
|
|
|
if c.Region != "" {
|
|
accessCfg.Region = c.Region
|
|
} else {
|
|
accessCfg.Region = "us-phoenix-1"
|
|
}
|
|
|
|
if c.Fingerprint != "" {
|
|
accessCfg.Fingerprint = c.Fingerprint
|
|
}
|
|
|
|
if c.KeyFile != "" {
|
|
accessCfg.KeyFile = c.KeyFile
|
|
accessCfg.Key, err = client.LoadPrivateKey(accessCfg.KeyFile)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Failed to load private key %s : %s", accessCfg.KeyFile, err)
|
|
}
|
|
}
|
|
|
|
var errs *packer.MultiError
|
|
if es := c.Comm.Prepare(&c.ctx); len(es) > 0 {
|
|
errs = packer.MultiErrorAppend(errs, es...)
|
|
}
|
|
|
|
// Required AccessCfg configuration options
|
|
|
|
if accessCfg.User == "" {
|
|
errs = packer.MultiErrorAppend(
|
|
errs, errors.New("'user_ocid' must be specified"))
|
|
}
|
|
|
|
if accessCfg.Tenancy == "" {
|
|
errs = packer.MultiErrorAppend(
|
|
errs, errors.New("'tenancy_ocid' must be specified"))
|
|
}
|
|
|
|
if accessCfg.Region == "" {
|
|
errs = packer.MultiErrorAppend(
|
|
errs, errors.New("'region' must be specified"))
|
|
}
|
|
|
|
if accessCfg.Fingerprint == "" {
|
|
errs = packer.MultiErrorAppend(
|
|
errs, errors.New("'fingerprint' must be specified"))
|
|
}
|
|
|
|
if accessCfg.Key == nil {
|
|
errs = packer.MultiErrorAppend(
|
|
errs, errors.New("'key_file' must be specified"))
|
|
}
|
|
|
|
c.AccessCfg = accessCfg
|
|
|
|
// Required non AccessCfg configuration options
|
|
|
|
if c.AvailabilityDomain == "" {
|
|
errs = packer.MultiErrorAppend(
|
|
errs, errors.New("'availability_domain' must be specified"))
|
|
}
|
|
|
|
if c.CompartmentID == "" {
|
|
c.CompartmentID = accessCfg.Tenancy
|
|
}
|
|
|
|
if c.Shape == "" {
|
|
errs = packer.MultiErrorAppend(
|
|
errs, errors.New("'shape' must be specified"))
|
|
}
|
|
|
|
if c.SubnetID == "" {
|
|
errs = packer.MultiErrorAppend(
|
|
errs, errors.New("'subnet_ocid' must be specified"))
|
|
}
|
|
|
|
if c.BaseImageID == "" {
|
|
errs = packer.MultiErrorAppend(
|
|
errs, errors.New("'base_image_ocid' must be specified"))
|
|
}
|
|
|
|
if c.ImageName == "" {
|
|
errs = packer.MultiErrorAppend(
|
|
errs, errors.New("'image_name' must be specified"))
|
|
}
|
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
|
return nil, errs
|
|
}
|
|
|
|
return c, nil
|
|
}
|
|
|
|
// getDefaultBMCSSettingsPath uses mitchellh/go-homedir to compute the default
|
|
// config file location.
|
|
func getDefaultBMCSSettingsPath() (string, error) {
|
|
home, err := homedir.Dir()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
path := filepath.Join(home, ".oraclebmc", "config")
|
|
if _, err := os.Stat(path); err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return path, nil
|
|
}
|