Erik Wilson
daa4beb22c
|
4 years ago | |
---|---|---|
.. | ||
api | Update go.mod for k8s 1.19 | 4 years ago |
controllers | Update go.mod for k8s 1.19 | 4 years ago |
node/helpers | Update go.mod for k8s 1.19 | 4 years ago |
service/helpers | Update vendor | 5 years ago |
volume | Update go.mod for k8s 1.19 | 4 years ago |
BUILD | Update go.mod for k8s 1.19 | 4 years ago |
CONTRIBUTING.md | Update vendor | 5 years ago |
LICENSE | Update vendor | 5 years ago |
OWNERS | Update go.mod for k8s 1.19 | 4 years ago |
README.md | Update vendor | 5 years ago |
SECURITY_CONTACTS | Update vendor | 5 years ago |
cloud.go | Update go.mod for k8s 1.19 | 4 years ago |
code-of-conduct.md | Update vendor | 5 years ago |
doc.go | Update vendor | 5 years ago |
go.mod | Update go.mod for k8s 1.19 | 4 years ago |
go.sum | Update go.mod for k8s 1.19 | 4 years ago |
plugins.go | Update go.mod for k8s 1.19 | 4 years ago |
ports.go | Update go.mod for k8s 1.19 | 4 years ago |
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
- Add an cloud provider specific code to this repo.
- 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
. - Make interface changes without first discussing them with sig-cloudprovider.