https://github.com/kubernetes/cloud-provider
cloud-provider defines the shared interfaces which Kubernetes cloud providers implement. These interfaces allow various controllers to integrate with any cloud provider in a pluggable fashion. Please file any issues against the main Kubernetes repo.
https://github.com/kubernetes/cloud-provider
k8s-sig-cloud-provider k8s-staging
Last synced: about 1 year ago
JSON representation
cloud-provider defines the shared interfaces which Kubernetes cloud providers implement. These interfaces allow various controllers to integrate with any cloud provider in a pluggable fashion. Please file any issues against the main Kubernetes repo.
- Host: GitHub
- URL: https://github.com/kubernetes/cloud-provider
- Owner: kubernetes
- License: apache-2.0
- Created: 2018-10-08T23:27:25.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-05-03T00:36:29.000Z (about 1 year ago)
- Last Synced: 2025-05-03T01:42:08.058Z (about 1 year ago)
- Topics: k8s-sig-cloud-provider, k8s-staging
- Language: Go
- Homepage:
- Size: 5.18 MB
- Stars: 267
- Watchers: 21
- Forks: 128
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: code-of-conduct.md
- Security: SECURITY_CONTACTS
Awesome Lists containing this project
README
# 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.