ingress-nginx-helm/vendor/k8s.io/cloud-provider
Manuel Alejandro de Brito Fontes ec3da4d2c9 Update go dependencies
2020-05-22 21:07:02 -04:00
..
cloud.go Update go dependencies (#5170) 2020-02-26 14:56:11 -03:00
code-of-conduct.md Update go dependencies 2018-12-05 13:27:09 -03:00
CONTRIBUTING.md Update go dependencies 2019-03-28 22:36:15 -03:00
doc.go Update go dependencies 2018-12-05 13:27:09 -03:00
go.mod Update go dependencies 2020-05-22 21:07:02 -04:00
go.sum Update go dependencies 2020-05-22 21:07:02 -04:00
LICENSE Update go dependencies 2018-12-05 13:27:09 -03:00
OWNERS Update go dependencies to v1.17.0 2019-12-10 21:55:54 -03:00
plugins.go Update go dependencies for kubernetes 1.16.0 2019-09-19 11:01:00 -03:00
README.md Update go dependencies 2018-12-05 13:27:09 -03:00
SECURITY_CONTACTS Update go dependencies for kubernetes 1.16.0 2019-09-19 11:01:00 -03:00

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.