This repository contains the Kubernetes cloud-controller-manager for vSphere.
This project replaces the deprecated in-tree vSphere cloud provider located within the Kubernetes repository. If you want to create issues or pull requests for the in-tree cloud provider, please go to the Kubernetes repository.
There is ongoing work for refactoring cloud providers out of the upstream repository. For more details, please check this KEP.
Get started with Cloud controller manager for vSphere with Kubeadm with this quickstart.
Get started with Cloud controller manager for vSphere using Helm with this Helm quickstart.
Documentation on how to install and use the Kubernetes vSphere Cloud Provider is located on the docs site.
This section outlines how to build the cloud provider with and without Docker.
Build locally with the following command:
$ git clone https://github.com/kubernetes/cloud-provider-vsphere && \
make -C cloud-provider-vsphere
The project uses Go modules and:
- Requires Go 1.11+
- Should not be cloned into the
$GOPATH
It is also possible to build the cloud provider with Docker in order to ensure a clean build environment:
$ git clone https://github.com/kubernetes/cloud-provider-vsphere && \
make -C cloud-provider-vsphere build-with-docker
Official releases of the vSphere Cloud Controller Manager container image can be found at:
https://gcr.io/cloud-provider-vsphere/cpi/release/manager
The very latest builds from the tip of master, which may not be stable, can be found at:
https://gcr.io/cloud-provider-vsphere/cpi/ci/manager
Please see CONTRIBUTING.md for instructions on how to contribute.
Out of tree cloud providers no longer provide native storage support. Instead, a Container Storage Interface (CSI) driver is required. The vSphere CSI driver is located here.