A CPI to deploy bosh releases to Kubernetes.
Clone this repo and build it. Using the following commands on a Linux or Mac OS X system:
$ MY_GO_PROJECTS=/path/to/go/projects
$ export GOPATH=$MY_GO_PROJECTS:$GOPATH
$ cd $MY_GO_PROJECTS
$ mkdir -p src/github.ibm.com/Bluemix
$ cd src/github.ibm.com/Bluemix
$ git clone git@github.ibm.com:Bluemix/kubernetes-cpi.git
$ cd kubernetes-cpi
$ ./bin/build
The executable output should now be located in: out/cpi
.
$ go get github.com/onsi/ginkgo/ginkgo
$ go get github.com/onsi/gomega
You can run the tests to make sure all is well, run unit tests with: $ bin/test-unit
. The output of $ bin/test-unit
should be similar to:
$ bin/test-unit
Cleaning build artifacts...
Formatting packages...
Unit Testing packages:
[1497497714] Actions Suite - 114/115 specs - 7 nodes •••••••P••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••• SUCCESS! 595.328657ms
[1497497714] CPI Suite - 19/19 specs - 7 nodes ••••••••••••••••••• SUCCESS! 15.16537ms
[1497497714] Kubecluster Suite - 4/4 specs - 7 nodes •••• SUCCESS! 27.317174ms
[1497497714] Config Suite - 6/6 specs - 7 nodes •••••• SUCCESS! 14.76886ms
[1497497714] CPI Main Command Suite - 1/1 specs - 7 nodes • SUCCESS! 16.791359ms
Ginkgo ran 5 suites in 4.671339046s
Test Suite Passed
Vetting packages for potential issues...
SWEET SUITE SUCCESS
- Integration Test will execute CPI actions against a real Kubernetes cluster, please setup CLI
bx
andkubectl
described in here. - Provide API endpoint, credentials and cluster name, etc., in your
.bashrc
or.bash_profile
. There's an example config in integration/env.
Note:
- Please set $CLUSTER_NAME to the name of a functioning cluster, as integration tests will use the cluster directly to create pods, etc.
- Please keep the double quote in case there are some special characters of the values provided.
# example integration/env file
$ cat integration/env
export BX_API="api.ng.bluemix.net"
export BX_API_KEY="abc"
export CLUSTER_NAME="cluster_integration"
export SL_USERNAME="zhanggbj"
export SL_API_KEY="12345678910570d12e2149b3fd12345678910499b34351a8db2512345678910"
$ source integration/env
- Run integration tests with:
$ bin/test-integration
. The output of$ bin/test-unit
should be similar to:
$ bin/test-integration
Cleaning build artifacts...
Formatting packages...
cd to base of project...
Creating cpi binary...
Integration Testing ALL CPI methods
Running Suite: Integration Suite
================================
Random Seed: 1497510180
Will run 0 of 0 specs
Ran 0 of 0 Specs in 0.000 seconds
SUCCESS! -- 0 Passed | 0 Failed | 0 Pending | 0 Skipped PASS
Running Suite: CreateVm Suite
=============================
Random Seed: 1497510180
Will run 2 of 2 specs
Integration test for create_vm create_vm in cluster
returns error because empty parameters
/Users/{your-user-name}/github.ibm.com/Bluemix/kubernetes-cpi/integration/create_vm/create_vm_test.go:63
•
------------------------------
Integration test for create_vm create_vm in cluster
returns valid result because valid parameters
/Users/{your-user-name}/src/github.ibm.com/Bluemix/kubernetes-cpi/integration/create_vm/create_vm_test.go:88
• [SLOW TEST:108.813 seconds]
Integration test for create_vm
/Users/{your-user-name}/src/github.ibm.com/Bluemix/kubernetes-cpi/integration/create_vm/create_vm_test.go:90
create_vm in cluster
/Users/{your-user-name}/src/github.ibm.com/Bluemix/kubernetes-cpi/integration/create_vm/create_vm_test.go:89
returns valid result because valid parameters
/Users/{your-user-name}/src/github.ibm.com/Bluemix/kubernetes-cpi/integration/create_vm/create_vm_test.go:88
------------------------------
Ran 2 of 2 Specs in 150.055 seconds
SUCCESS! -- 2 Passed | 0 Failed | 0 Pending | 0 Skipped PASS
Ginkgo ran 2 suites in 2m30.650380343s
Test Suite Passed
Vetting packages for potential issues...
SWEET SUITE SUCCESS
Dependencies are managed via govendor. See vendor.json for the current dependencies.