This is the IBM Cloud Provider repository which implements the IBM Cloud Controller Manager (CCM). The IBM CCM can be used to provide IBM Cloud infrastructure node and load balancer support to Kubernetes or OpenShift clusters running on IBM Cloud. This repository branch is based on Kubernetes version v1.32.0-beta.0. See CONTRIBUTING.md for contribution guidelines.
These build instructions have been verified using VirtualBox version 6.1.36, Vagrant version 2.2.19, and MacOS version 12.5.
-
Create VirtualBox network configuration
/etc/vbox/network.conf
with the following content:$ cat /etc/vbox/network.conf * 192.168.10.0/21 192.168.56.0/21
-
Change to your local repository. The build will work against this directory by making it a vagrant folder synchronized to the VM.
-
cd vagrant-kube-build
-
./build.sh
-
If the build fails, you can correct the errors and re-run
./build.sh
. You can also run specific build steps by passing one or more of the following options:- Build setup (always run with other steps to setup the build environment and dependencies):
setup
- Build source (i.e.
make fmt
,make lint
, etc.):source
- Build containers (i.e.
make containers
):containers
- Build Docker registry for the containers:
registry
- Build specific make step (cannot be run with other steps):
make [[option] ...]
- Build setup (always run with other steps to setup the build environment and dependencies):
-
Once the build is complete, you can log into the VM via
vagrant ssh
. Runningvagrant ssh-config
will give you SSH configuration updates which you can apply to your host's~/.ssh/config
file. This allows you to runssh cloud-provider-ibm-build
to access the VM. Also, you can usevagrant suspend
to suspend the VM andvagrant destroy -f
to destroy it.
Refer to examples for deploying the IBM Cloud Provider based on underlying infrastructure type, classic or VPC.
The default build process above will run all unit tests and matches what is done by Travis CI.
make test
Dependencies are managed via go modules
for builds. Be sure to regenerate the go.mod
and go.sum
files when there are
new or updated dependencies. You can do this by running make updatedeps
.
The steps needed to support a new Kubernetes release have been moved to a Wiki page.
Travis CI is used to build IBM Cloud Provider releases. A nightly build job will trigger a Travis build by publishing a new tag when there are changes for a release.