# ___ ____ _ ____ _ _____
# / _ \| _ \ / \ / ___| | | ____|
# | | | | |_) | / _ \| | | | | _|
# | |_| | _ < / ___ | |___| |___| |___
# \___/|_| \_/_/ \_\____|_____|_____|
This is an external BOSH CPI for Oracle Cloud Infrastructure
Consumers of this CPI are expected to be familiar with following OCI concepts
- Tenancy
- Compartments and Users
- Virtual Cloud Network(VCN) and Subnets
- Regions and Availabilty Domains
- Instance and Shapes
- API signing key pair
- Instance SSH key pair
- Oracle Cloud Identifier (OCID)
See OCI Concepts Documentation to learn about these concepts
Refer to Deploying BOSH Director Guide
Install BOSH CLI v2
The source for this CPI is not intended to be deployed except as a BOSH deployment. To build or install the CPI locally for development or test purposes, you can symlink the repository into your Go workspace.
From the root of this repository:
mkdir -p $GOPATH/src/github.com/oracle
ln -s $(pwd)/src/github.com/oracle/bosh-oracle-cpi $GOPATH/src/github.com/oracle/bosh-oracle-cpi
From $GOPATH/src/github.com/oracle/bosh-oracle-cpi
make build
Builds the cpi executable as $GOPATH/src/github.com/oracle/bosh-oracle-cpi/out/cpi
$GOPATH/src/github.com/oracle/bosh-oracle-cpi/Makefile has targets to run two kinds of development tests
-
Unit tests
-
make test
Runs all unit tests. Unit tests use fakes and don't interact with the Oracle Cloud Infrastructure.
-
TEST_SPEC=CreateDisk make single-test
Runs a single unit test specified in the TEST_SPEC variable, CreateDisk spec in this example
-
-
Oracle Cloud Infrastructure tests
make ocitest
Runs tests in oci/test package. The tests in this package drive the layer responsible for bulk of the work in the CPI. E.g. creating/deleting a vm instance or a persistent block volume.
Configuration values required for running this target are specified in the format used by various Oracle Cloud Infrastructure SDKs.
The default configuration file name and location is ~/.oci/config. The configuration file can contain multiple profiles. Tests run by this target use the [CPITEST] profile by default.
The default file location and the profile name can be changed by setting the CPITEST_CONFIG and CPITEST_PROFILE environment variables respectively.
List of configuration entries
Entry Description tenancy OCID of the tenancy in which CPI will create(or delete) the requested resources user OCID of the user in that tenancy region Region to use key_file API key file used to sign the requests fingerprint Fingerprint of the API key uploaded to OCI compartment OCID of the compartment in which the resources will be created ad Name of the Avaialibilty Domain in the region vcn Name of the VCN to use subnet Name of the subnet in that VCN to use cpiPrivateKeyPath Path to locally provisioned ssh private key used by CPI ssh to attach iscsi block volumes cpiPublicKeyPath Path to locally provisioned ssh public key used by CPI ssh to attach iscsi block volumes userPublicKeyPath (Optional) Public key to install when creating a new instance stemcellImage OCID of the stemcell image for creating new instances - Target
ocitest-subset
can be used to run a subset of oci tests. For example, TEST_SPEC=Test_VmOps make ocitest-subset
runs tests containing the expression Test_VmOps in their name. Note that by convention vm, disks, and stemcell tests are named as Test_VmOpsXX, Test_DiskOpsXX, and Test_StemcellOpsXX respectively.
Create a cpi.json configuration file:
Run it using the previously created json
$ echo "{\"method\": \"method_name\", \"arguments\": []}" | cpi -configFile="/path/to/cpi.json"
$ ./populate-blobstore.sh
$ ./build-release.sh
build-release.sh will bump the dev release version and produce
bosh-oracle-cpi-0+dev.latest.tgz
under ./dev_releases/bosh-oracle-cpi directory
$ bosh reset-release
to remove all the versions of this release under ./dev_releases