From 09e07c9f211ebc5c0801bbaa1d9669b9c7315c5b Mon Sep 17 00:00:00 2001 From: Zhou Tao Date: Wed, 28 Nov 2018 23:53:31 +0800 Subject: [PATCH] fix non-existing "CloudProvider Interface" link (#10953) minor change, just get 404 error when clicking the url and try to fix it. --- content/en/docs/concepts/architecture/cloud-controller.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/architecture/cloud-controller.md b/content/en/docs/concepts/architecture/cloud-controller.md index 714cfe365c..de79d9d52c 100644 --- a/content/en/docs/concepts/architecture/cloud-controller.md +++ b/content/en/docs/concepts/architecture/cloud-controller.md @@ -109,7 +109,7 @@ The PersistentVolumeLabels controller moves the cloud-dependent functionality of ## Plugin mechanism -The cloud controller manager uses Go interfaces to allow implementations from any cloud to be plugged in. Specifically, it uses the CloudProvider Interface defined [here](https://github.com/kubernetes/kubernetes/blob/master/pkg/cloudprovider/cloud.go). +The cloud controller manager uses Go interfaces to allow implementations from any cloud to be plugged in. Specifically, it uses the CloudProvider Interface defined [here](https://github.com/kubernetes/kubernetes/tree/master/pkg/cloudprovider). The implementation of the four shared controllers highlighted above, and some scaffolding along with the shared cloudprovider interface, will stay in the Kubernetes core. Implementations specific to cloud providers will be built outside of the core and implement interfaces defined in the core.