kops/vendor/k8s.io/cloud-provider
Ciprian Hacman 30f84a4f13 Update dependencies 2023-05-08 07:35:34 +03:00
..
node/helpers Update dependencies 2023-05-08 07:35:34 +03:00
service/helpers Update dependencies 2023-05-08 07:35:34 +03:00
volume Remove bazel files from vendor 2022-04-12 13:29:03 +02:00
CONTRIBUTING.md Update k8s to 1.13.5: vendor directory 2019-05-06 09:58:38 -04:00
LICENSE Update k8s to 1.13.5: vendor directory 2019-05-06 09:58:38 -04:00
OWNERS Bump to golang1.18 and k8s deps to 1.24.0-rc.0 2022-04-22 14:11:47 +02:00
README.md Bump to golang1.18 and k8s deps to 1.24.0-rc.0 2022-04-22 14:11:47 +02:00
SECURITY_CONTACTS Update vendor 2020-01-17 06:38:43 -05:00
cloud.go Update dependencies 2023-05-08 07:35:34 +03:00
code-of-conduct.md Update k8s to 1.13.5: vendor directory 2019-05-06 09:58:38 -04:00
doc.go Update k8s to 1.13.5: vendor directory 2019-05-06 09:58:38 -04:00
plugins.go Update dependencies 2023-05-08 07:35:34 +03:00
ports.go Upgrade kubernetes dependencies to 1.19.0-rc.4 2020-08-24 10:54:15 -05:00

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

  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.