k3s/vendor/k8s.io/cloud-provider
Jacob Blain Christen 93b18b343a Update to Kubernetes v1.20.5 (#3094)
* Update to Kubernetes v1.20.5
* vendor: bumps for some containerd deps
* go: bump to 1.16.2 for arm

Signed-off-by: Jacob Blain Christen <jacob@rancher.com>
(cherry picked from commit 355fff3017)
2021-03-31 14:18:41 -07:00
..
api Update go.mod for k8s 1.19 2020-08-28 17:18:31 -07:00
app Update Kubernetes to v1.20.0-k3s1 2020-12-08 22:51:34 -08:00
config Update Kubernetes to v1.20.0-k3s1 2020-12-08 22:51:34 -08:00
controllers Update Kubernetes to v1.20.0-k3s1 2020-12-08 22:51:34 -08:00
node/helpers Update go.mod for k8s 1.19 2020-08-28 17:18:31 -07:00
options Update Kubernetes to v1.20.0-k3s1 2020-12-08 22:51:34 -08:00
service/helpers Update vendor 2020-04-18 23:59:08 -07:00
volume Update Kubernetes to v1.20.0-k3s1 2020-12-08 22:51:34 -08:00
BUILD Update Kubernetes to v1.20.0-k3s1 2020-12-08 22:51:34 -08:00
cloud.go Update Kubernetes to v1.20.0-k3s1 2020-12-08 22:51:34 -08:00
code-of-conduct.md Update vendor 2019-08-30 23:08:05 -07:00
CONTRIBUTING.md Update vendor 2019-08-30 23:08:05 -07:00
doc.go Update vendor 2019-08-30 23:08:05 -07:00
go.mod Update Kubernetes to v1.20.0-k3s1 2020-12-08 22:51:34 -08:00
go.sum Update to Kubernetes v1.20.5 (#3094) 2021-03-31 14:18:41 -07:00
LICENSE Update vendor 2019-08-30 23:08:05 -07:00
OWNERS Update go.mod for k8s 1.19 2020-08-28 17:18:31 -07:00
plugins.go Update go.mod for k8s 1.19 2020-08-28 17:18:31 -07:00
ports.go Update go.mod for k8s 1.19 2020-08-28 17:18:31 -07:00
README.md Update vendor 2019-08-30 23:08:05 -07:00
SECURITY_CONTACTS Update vendor 2019-09-27 16:54:32 -07: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.