mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
71 lines
2.8 KiB
Go
71 lines
2.8 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/utils/exec"
|
|
// Volume plugins
|
|
"k8s.io/kubernetes/pkg/volume"
|
|
"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/flexvolume"
|
|
"k8s.io/kubernetes/pkg/volume/host_path"
|
|
"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/secret"
|
|
// features check
|
|
utilfeature "k8s.io/apiserver/pkg/util/feature"
|
|
"k8s.io/kubernetes/pkg/features"
|
|
)
|
|
|
|
// ProbeVolumePlugins collects all volume plugins into an easy to use list.
|
|
func ProbeVolumePlugins() []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, emptydir.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, downwardapi.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, configmap.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, projected.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, local.ProbeVolumePlugins()...)
|
|
if utilfeature.DefaultFeatureGate.Enabled(features.CSIPersistentVolume) {
|
|
allPlugins = append(allPlugins, csi.ProbeVolumePlugins()...)
|
|
}
|
|
return allPlugins
|
|
}
|
|
|
|
// 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)
|
|
}
|