
Flocker storage plugin removed from k8s codebase. Flocker, an early external storage plugin in k8s, has not been in maintenance and their business is down. As far as I know, the plugin is not being used anymore. This PR removes the whole flocker dependency and codebase from core k8s to reduce potential security risks and reduce maintenance work from the sig-storage community.
88 lines
3.6 KiB
Go
88 lines
3.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 (
|
|
"k8s.io/component-base/featuregate"
|
|
"k8s.io/utils/exec"
|
|
|
|
// Volume plugins
|
|
"k8s.io/kubernetes/pkg/volume"
|
|
"k8s.io/kubernetes/pkg/volume/cephfs"
|
|
"k8s.io/kubernetes/pkg/volume/configmap"
|
|
"k8s.io/kubernetes/pkg/volume/csi"
|
|
"k8s.io/kubernetes/pkg/volume/downwardapi"
|
|
"k8s.io/kubernetes/pkg/volume/emptydir"
|
|
"k8s.io/kubernetes/pkg/volume/fc"
|
|
"k8s.io/kubernetes/pkg/volume/flexvolume"
|
|
"k8s.io/kubernetes/pkg/volume/git_repo"
|
|
"k8s.io/kubernetes/pkg/volume/glusterfs"
|
|
"k8s.io/kubernetes/pkg/volume/hostpath"
|
|
"k8s.io/kubernetes/pkg/volume/iscsi"
|
|
"k8s.io/kubernetes/pkg/volume/local"
|
|
"k8s.io/kubernetes/pkg/volume/nfs"
|
|
"k8s.io/kubernetes/pkg/volume/projected"
|
|
"k8s.io/kubernetes/pkg/volume/quobyte"
|
|
"k8s.io/kubernetes/pkg/volume/secret"
|
|
"k8s.io/kubernetes/pkg/volume/storageos"
|
|
|
|
// Cloud providers
|
|
_ "k8s.io/kubernetes/pkg/cloudprovider/providers"
|
|
)
|
|
|
|
// ProbeVolumePlugins collects all volume plugins into an easy to use list.
|
|
func ProbeVolumePlugins(featureGate featuregate.FeatureGate) ([]volume.VolumePlugin, error) {
|
|
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
|
|
var err error
|
|
allPlugins, err = appendLegacyProviderVolumes(allPlugins, featureGate)
|
|
if err != nil {
|
|
return allPlugins, err
|
|
}
|
|
allPlugins = append(allPlugins, emptydir.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, git_repo.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, hostpath.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, quobyte.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, cephfs.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, downwardapi.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, fc.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, configmap.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, projected.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, local.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, storageos.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, csi.ProbeVolumePlugins()...)
|
|
return allPlugins, nil
|
|
}
|
|
|
|
// GetDynamicPluginProber gets the probers of dynamically discoverable plugins
|
|
// for kubelet.
|
|
// Currently only Flexvolume plugins are dynamically discoverable.
|
|
func GetDynamicPluginProber(pluginDir string, runner exec.Interface) volume.DynamicPluginProber {
|
|
return flexvolume.GetDynamicPluginProber(pluginDir, runner)
|
|
}
|