csi-driver-nfs/vendor/k8s.io/cloud-provider
Michelle Au 1238d27bad Update vendor to k8s 1.19 and csi-lib-utils to 0.9.0
Change-Id: I607c182c09a88a7daf1e4ffb67a28ab16d1f23ae
2020-11-30 18:23:47 -08:00
..
CONTRIBUTING.md Update vendor from go modules 2020-02-02 15:55:23 +01:00
LICENSE update vendor files to kube 1.14 2019-04-23 15:42:44 -04:00
OWNERS Update vendor to k8s 1.19 and csi-lib-utils to 0.9.0 2020-11-30 18:23:47 -08:00
README.md Update vendor from go modules 2020-02-02 15:55:23 +01:00
SECURITY_CONTACTS Update k8s.io/kubernetes to use v1.18.0 2020-11-02 20:33:59 +05:30
cloud.go Update vendor to k8s 1.19 and csi-lib-utils to 0.9.0 2020-11-30 18:23:47 -08:00
code-of-conduct.md Update vendor from go modules 2020-02-02 15:55:23 +01:00
doc.go update vendor files to kube 1.14 2019-04-23 15:42:44 -04:00
go.mod Update vendor to k8s 1.19 and csi-lib-utils to 0.9.0 2020-11-30 18:23:47 -08:00
go.sum Update vendor to k8s 1.19 and csi-lib-utils to 0.9.0 2020-11-30 18:23:47 -08:00
plugins.go Update vendor to k8s 1.19 and csi-lib-utils to 0.9.0 2020-11-30 18:23:47 -08:00
ports.go Update vendor to k8s 1.19 and csi-lib-utils to 0.9.0 2020-11-30 18:23:47 -08:00

README.md

cloud-provider

This repository defines the cloud-provider interface and mechanism to initialize a cloud-provider implementation into Kubernetes. Currently multiple processes use this code although the intent is that it will eventually only be cloud controller manager.

Note: go-get or vendor this package as k8s.io/cloud-provider.

Purpose

This library is a shared dependency for processes which need to be able to integrate with cloud-provider specific functionality.

Compatibility

Cloud Providers are expected to keep the HEAD of their implementations in sync with the HEAD of this repository.

Where does it come from?

cloud-provider is synced from https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/cloud-provider. Code changes are made in that location, merged into k8s.io/kubernetes and later synced here.

Things you should NOT do

  1. Add an cloud provider specific code to this repo.
  2. Directly modify anything under vendor/k8s.io/cloud-provider in this repo. Those are driven from k8s.io/kubernetes/staging/src/k8s.io/cloud-provider.
  3. Make interface changes without first discussing them with sig-cloudprovider.