
Flocker [1] is an open-source container data volume manager for Dockerized applications. This PR adds a volume plugin for Flocker. The plugin interfaces the Flocker Control Service REST API [2] to attachment attach the volume to the pod. Each kubelet host should run Flocker agents (Container Agent and Dataset Agent). The kubelet will also require environment variables that contain the host and port of the Flocker Control Service. (see Flocker architecture [3] for more). - `FLOCKER_CONTROL_SERVICE_HOST` - `FLOCKER_CONTROL_SERVICE_PORT` The contribution introduces a new 'flocker' volume type to the API with fields: - `datasetName`: which indicates the name of the dataset in Flocker added to metadata; - `size`: a human-readable number that indicates the maximum size of the requested dataset. Full documentation can be found docs/user-guide/volumes.md and examples can be found at the examples/ folder [1] https://clusterhq.com/flocker/introduction/ [2] https://docs.clusterhq.com/en/1.3.1/reference/api.html [3] https://docs.clusterhq.com/en/1.3.1/concepts/architecture.html
88 lines
3.6 KiB
Go
88 lines
3.6 KiB
Go
/*
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
|
|
|
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/gcp"
|
|
// Network plugins
|
|
"k8s.io/kubernetes/pkg/kubelet/network"
|
|
"k8s.io/kubernetes/pkg/kubelet/network/cni"
|
|
"k8s.io/kubernetes/pkg/kubelet/network/exec"
|
|
// Volume plugins
|
|
"k8s.io/kubernetes/pkg/volume"
|
|
"k8s.io/kubernetes/pkg/volume/aws_ebs"
|
|
"k8s.io/kubernetes/pkg/volume/cephfs"
|
|
"k8s.io/kubernetes/pkg/volume/cinder"
|
|
"k8s.io/kubernetes/pkg/volume/downwardapi"
|
|
"k8s.io/kubernetes/pkg/volume/empty_dir"
|
|
"k8s.io/kubernetes/pkg/volume/fc"
|
|
"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/persistent_claim"
|
|
"k8s.io/kubernetes/pkg/volume/rbd"
|
|
"k8s.io/kubernetes/pkg/volume/secret"
|
|
//Cloud providers
|
|
_ "k8s.io/kubernetes/pkg/cloudprovider/providers"
|
|
)
|
|
|
|
// 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, 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, persistent_claim.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, rbd.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, cinder.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, cephfs.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, downwardapi.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, fc.ProbeVolumePlugins()...)
|
|
allPlugins = append(allPlugins, flocker.ProbeVolumePlugins()...)
|
|
return allPlugins
|
|
}
|
|
|
|
// ProbeNetworkPlugins collects all compiled-in plugins
|
|
func ProbeNetworkPlugins(pluginDir string) []network.NetworkPlugin {
|
|
allPlugins := []network.NetworkPlugin{}
|
|
|
|
// for each existing plugin, add to the list
|
|
allPlugins = append(allPlugins, exec.ProbeNetworkPlugins(pluginDir)...)
|
|
allPlugins = append(allPlugins, cni.ProbeNetworkPlugins(pluginDir)...)
|
|
|
|
return allPlugins
|
|
}
|