k3s/vendor/k8s.io/cloud-provider
Brad Davidson e8381db778 Update Kubernetes to v1.21.0
* Update Kubernetes to v1.21.0
* Update to golang v1.16.2
* Update dependent modules to track with upstream
* Switch to upstream flannel
* Track changes to upstream cloud-controller-manager and FeatureGates

Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
2021-04-14 14:51:42 -07:00
..
api Update Kubernetes to v1.21.0 2021-04-14 14:51:42 -07:00
app Update Kubernetes to v1.21.0 2021-04-14 14:51:42 -07:00
config Update Kubernetes to v1.21.0 2021-04-14 14:51:42 -07:00
controllers Update Kubernetes to v1.21.0 2021-04-14 14:51:42 -07:00
credentialconfig Update Kubernetes to v1.21.0 2021-04-14 14:51:42 -07:00
node/helpers Update Kubernetes to v1.21.0 2021-04-14 14:51:42 -07:00
options Update Kubernetes to v1.21.0 2021-04-14 14:51:42 -07:00
service/helpers Update Kubernetes to v1.21.0 2021-04-14 14:51:42 -07:00
volume Update Kubernetes to v1.21.0 2021-04-14 14:51:42 -07:00
cloud.go
code-of-conduct.md
CONTRIBUTING.md
doc.go
go.mod Update Kubernetes to v1.21.0 2021-04-14 14:51:42 -07:00
go.sum Update Kubernetes to v1.21.0 2021-04-14 14:51:42 -07:00
LICENSE
OWNERS Update Kubernetes to v1.21.0 2021-04-14 14:51:42 -07:00
plugins.go
ports.go
README.md
SECURITY_CONTACTS

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.