8e5b17cf13
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
107 lines
4.6 KiB
Go
107 lines
4.6 KiB
Go
/*
|
|
Copyright 2014 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package app
|
|
|
|
// This file exists to force the desired plugin implementations to be linked.
|
|
import (
|
|
// Credential providers
|
|
_ "k8s.io/kubernetes/pkg/credentialprovider/aws"
|
|
_ "k8s.io/kubernetes/pkg/credentialprovider/azure"
|
|
_ "k8s.io/kubernetes/pkg/credentialprovider/gcp"
|
|
// Network plugins
|
|
"k8s.io/kubernetes/pkg/kubelet/network"
|
|
"k8s.io/kubernetes/pkg/kubelet/network/cni"
|
|
"k8s.io/kubernetes/pkg/kubelet/network/kubenet"
|
|
// Volume plugins
|
|
"k8s.io/kubernetes/pkg/volume"
|
|
"k8s.io/kubernetes/pkg/volume/aws_ebs"
|
|
"k8s.io/kubernetes/pkg/volume/azure_dd"
|
|
"k8s.io/kubernetes/pkg/volume/azure_file"
|
|
"k8s.io/kubernetes/pkg/volume/cephfs"
|
|
"k8s.io/kubernetes/pkg/volume/cinder"
|
|
"k8s.io/kubernetes/pkg/volume/configmap"
|
|
"k8s.io/kubernetes/pkg/volume/downwardapi"
|
|
"k8s.io/kubernetes/pkg/volume/empty_dir"
|
|
"k8s.io/kubernetes/pkg/volume/fc"
|
|
"k8s.io/kubernetes/pkg/volume/flexvolume"
|
|
"k8s.io/kubernetes/pkg/volume/flocker"
|
|
"k8s.io/kubernetes/pkg/volume/gce_pd"
|
|
"k8s.io/kubernetes/pkg/volume/git_repo"
|
|
"k8s.io/kubernetes/pkg/volume/glusterfs"
|
|
"k8s.io/kubernetes/pkg/volume/host_path"
|
|
"k8s.io/kubernetes/pkg/volume/iscsi"
|
|
"k8s.io/kubernetes/pkg/volume/nfs"
|
|
"k8s.io/kubernetes/pkg/volume/photon_pd"
|
|
"k8s.io/kubernetes/pkg/volume/quobyte"
|
|
"k8s.io/kubernetes/pkg/volume/rbd"
|
|
"k8s.io/kubernetes/pkg/volume/secret"
|
|
"k8s.io/kubernetes/pkg/volume/vsphere_volume"
|
|
// Cloud providers
|
|
_ "k8s.io/kubernetes/pkg/cloudprovider/providers"
|
|
)
|
|
|
|
// ProbeVolumePlugins collects all volume plugins into an easy to use list.
|
|
// PluginDir specifies the directory to search for additional third party
|
|
// volume plugins.
|
|
func ProbeVolumePlugins(pluginDir string) []volume.VolumePlugin {
|
|
allPlugins := []volume.VolumePlugin{}
|
|
|
|
// The list of plugins to probe is decided by the kubelet binary, not
|
|
// by dynamic linking or other "magic". Plugins will be analyzed and
|
|
// initialized later.
|
|
//
|
|
// Kubelet does not currently need to configure volume plugins.
|
|
// If/when it does, see kube-controller-manager/app/plugins.go for example of using volume.VolumeConfig
|
|
allPlugins = append(allPlugins, aws_ebs.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, empty_dir.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, gce_pd.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, git_repo.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, host_path.ProbeVolumePlugins(volume.VolumeConfig{})...)
|
|
allPlugins = append(allPlugins, nfs.ProbeVolumePlugins(volume.VolumeConfig{})...)
|
|
allPlugins = append(allPlugins, secret.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, iscsi.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, glusterfs.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, rbd.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, cinder.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, quobyte.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, cephfs.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, downwardapi.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, fc.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, flocker.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, flexvolume.ProbeVolumePlugins(pluginDir)...)
|
|
allPlugins = append(allPlugins, azure_file.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, configmap.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, vsphere_volume.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, azure_dd.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, photon_pd.ProbeVolumePlugins()...)
|
|
return allPlugins
|
|
}
|
|
|
|
// ProbeNetworkPlugins collects all compiled-in plugins
|
|
func ProbeNetworkPlugins(pluginDir, cniConfDir, cniBinDir string) []network.NetworkPlugin {
|
|
allPlugins := []network.NetworkPlugin{}
|
|
|
|
// for backwards-compat, allow pluginDir as a source of CNI config files
|
|
if cniConfDir == "" {
|
|
cniConfDir = pluginDir
|
|
}
|
|
// for each existing plugin, add to the list
|
|
allPlugins = append(allPlugins, cni.ProbeNetworkPlugins(cniConfDir, cniBinDir)...)
|
|
allPlugins = append(allPlugins, kubenet.NewPlugin(pluginDir))
|
|
|
|
return allPlugins
|
|
}
|