2014-11-23 15:47:25 +00:00
|
|
|
/*
|
2016-06-03 00:25:58 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors.
|
2014-11-23 15:47:25 +00:00
|
|
|
|
|
|
|
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 host_path
|
|
|
|
|
|
|
|
import (
|
2015-03-07 21:38:50 +00:00
|
|
|
"fmt"
|
2015-09-07 16:11:37 +00:00
|
|
|
"os"
|
|
|
|
"regexp"
|
2015-03-07 21:38:50 +00:00
|
|
|
|
2017-01-17 03:38:19 +00:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2017-01-11 14:09:48 +00:00
|
|
|
"k8s.io/apimachinery/pkg/types"
|
2017-01-24 14:35:22 +00:00
|
|
|
"k8s.io/apimachinery/pkg/util/uuid"
|
2016-11-18 20:58:56 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api/v1"
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/volume"
|
2017-05-25 01:54:48 +00:00
|
|
|
"k8s.io/kubernetes/pkg/volume/util/volumehelper"
|
2014-11-23 15:47:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// This is the primary entrypoint for volume plugins.
|
2015-09-03 03:14:26 +00:00
|
|
|
// The volumeConfig arg provides the ability to configure volume behavior. It is implemented as a pointer to allow nils.
|
2017-01-23 19:49:00 +00:00
|
|
|
// The hostPathPlugin is used to store the volumeConfig and give it, when needed, to the func that Recycles.
|
2015-09-03 03:14:26 +00:00
|
|
|
// Tests that exercise recycling should not use this func but instead use ProbeRecyclablePlugins() to override default behavior.
|
|
|
|
func ProbeVolumePlugins(volumeConfig volume.VolumeConfig) []volume.VolumePlugin {
|
|
|
|
return []volume.VolumePlugin{
|
|
|
|
&hostPathPlugin{
|
Simplifies NFS and Host Path Plugin - Removed newRecyclerFunc, newDeleterFunc and newProvisionerFunc
struct hostPathPlugin contains newRecyclerFunc, newDeleterFunc and newProvisionerFunc items that have only one instance, i.e. newRecycler, newDeleter or newProvisioner function.
That's why the newRecyclerFunc, newDeleterFunc and newProvisionerFunc items are removed and the newRecycler, newDeleter or newProvisioner functions are called directly.
In addition, the TestRecycler tests whether NewFakeRecycler function is called and returns nil. This is no longer needed so this particular part of the test is removed. In addition, the no longer used NewFakeRecycler function is removed also.
Similarly for the NFS plugin, struct nfsPlugin contains newRecyclerFunc item that has only one instance, i.e. newRecycler function. That's why the newRecyclerFunc item is removed and the newRecycler function is called directly. In addition, the TestRecycler tests whether newMockRecycler function is called and returns nil. This is no longer needed so this particular part of the test is removed. In addition, the no longer used newMockRecycler function is removed also.
2016-10-25 10:36:49 +00:00
|
|
|
host: nil,
|
|
|
|
config: volumeConfig,
|
2015-09-03 03:14:26 +00:00
|
|
|
},
|
|
|
|
}
|
2015-05-29 20:34:02 +00:00
|
|
|
}
|
|
|
|
|
2014-11-23 15:47:25 +00:00
|
|
|
type hostPathPlugin struct {
|
Simplifies NFS and Host Path Plugin - Removed newRecyclerFunc, newDeleterFunc and newProvisionerFunc
struct hostPathPlugin contains newRecyclerFunc, newDeleterFunc and newProvisionerFunc items that have only one instance, i.e. newRecycler, newDeleter or newProvisioner function.
That's why the newRecyclerFunc, newDeleterFunc and newProvisionerFunc items are removed and the newRecycler, newDeleter or newProvisioner functions are called directly.
In addition, the TestRecycler tests whether NewFakeRecycler function is called and returns nil. This is no longer needed so this particular part of the test is removed. In addition, the no longer used NewFakeRecycler function is removed also.
Similarly for the NFS plugin, struct nfsPlugin contains newRecyclerFunc item that has only one instance, i.e. newRecycler function. That's why the newRecyclerFunc item is removed and the newRecycler function is called directly. In addition, the TestRecycler tests whether newMockRecycler function is called and returns nil. This is no longer needed so this particular part of the test is removed. In addition, the no longer used newMockRecycler function is removed also.
2016-10-25 10:36:49 +00:00
|
|
|
host volume.VolumeHost
|
|
|
|
config volume.VolumeConfig
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
2015-03-19 05:18:31 +00:00
|
|
|
var _ volume.VolumePlugin = &hostPathPlugin{}
|
2015-05-29 20:34:02 +00:00
|
|
|
var _ volume.PersistentVolumePlugin = &hostPathPlugin{}
|
|
|
|
var _ volume.RecyclableVolumePlugin = &hostPathPlugin{}
|
2015-09-07 16:11:37 +00:00
|
|
|
var _ volume.DeletableVolumePlugin = &hostPathPlugin{}
|
2015-10-12 18:27:49 +00:00
|
|
|
var _ volume.ProvisionableVolumePlugin = &hostPathPlugin{}
|
2014-11-23 15:47:25 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
hostPathPluginName = "kubernetes.io/host-path"
|
|
|
|
)
|
|
|
|
|
2015-09-30 18:31:53 +00:00
|
|
|
func (plugin *hostPathPlugin) Init(host volume.VolumeHost) error {
|
2014-11-23 15:47:25 +00:00
|
|
|
plugin.host = host
|
2015-09-30 18:31:53 +00:00
|
|
|
return nil
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 22:48:21 +00:00
|
|
|
func (plugin *hostPathPlugin) GetPluginName() string {
|
2014-11-23 15:47:25 +00:00
|
|
|
return hostPathPluginName
|
|
|
|
}
|
|
|
|
|
2016-05-30 22:48:21 +00:00
|
|
|
func (plugin *hostPathPlugin) GetVolumeName(spec *volume.Spec) (string, error) {
|
2016-05-30 02:22:22 +00:00
|
|
|
volumeSource, _, err := getVolumeSource(spec)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
2016-05-30 22:48:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return volumeSource.Path, nil
|
|
|
|
}
|
|
|
|
|
2015-04-14 16:29:33 +00:00
|
|
|
func (plugin *hostPathPlugin) CanSupport(spec *volume.Spec) bool {
|
2015-08-12 19:11:03 +00:00
|
|
|
return (spec.PersistentVolume != nil && spec.PersistentVolume.Spec.HostPath != nil) ||
|
|
|
|
(spec.Volume != nil && spec.Volume.HostPath != nil)
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 02:22:22 +00:00
|
|
|
func (plugin *hostPathPlugin) RequiresRemount() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-02-21 18:19:48 +00:00
|
|
|
func (plugin *hostPathPlugin) SupportsMountOption() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-02-13 04:40:30 +00:00
|
|
|
func (plugin *hostPathPlugin) SupportsBulkVolumeVerification() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-11-18 20:58:56 +00:00
|
|
|
func (plugin *hostPathPlugin) GetAccessModes() []v1.PersistentVolumeAccessMode {
|
|
|
|
return []v1.PersistentVolumeAccessMode{
|
|
|
|
v1.ReadWriteOnce,
|
2015-03-12 19:37:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-18 20:58:56 +00:00
|
|
|
func (plugin *hostPathPlugin) NewMounter(spec *volume.Spec, pod *v1.Pod, _ volume.VolumeOptions) (volume.Mounter, error) {
|
2016-05-30 02:22:22 +00:00
|
|
|
hostPathVolumeSource, readOnly, err := getVolumeSource(spec)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2015-04-14 16:29:33 +00:00
|
|
|
}
|
2016-05-30 02:22:22 +00:00
|
|
|
return &hostPathMounter{
|
|
|
|
hostPath: &hostPath{path: hostPathVolumeSource.Path},
|
|
|
|
readOnly: readOnly,
|
|
|
|
}, nil
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
2016-03-23 05:12:21 +00:00
|
|
|
func (plugin *hostPathPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
|
|
|
|
return &hostPathUnmounter{&hostPath{
|
2016-03-24 19:05:08 +00:00
|
|
|
path: "",
|
2015-12-04 20:40:01 +00:00
|
|
|
}}, nil
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
2017-01-23 19:49:00 +00:00
|
|
|
// Recycle recycles/scrubs clean a HostPath volume.
|
|
|
|
// Recycle blocks until the pod has completed or any error occurs.
|
|
|
|
// HostPath recycling only works in single node clusters and is meant for testing purposes only.
|
|
|
|
func (plugin *hostPathPlugin) Recycle(pvName string, spec *volume.Spec, eventRecorder volume.RecycleEventRecorder) error {
|
|
|
|
if spec.PersistentVolume == nil || spec.PersistentVolume.Spec.HostPath == nil {
|
|
|
|
return fmt.Errorf("spec.PersistentVolumeSource.HostPath is nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
pod := plugin.config.RecyclerPodTemplate
|
|
|
|
timeout := volume.CalculateTimeoutForVolume(plugin.config.RecyclerMinimumTimeout, plugin.config.RecyclerTimeoutIncrement, spec.PersistentVolume)
|
|
|
|
// overrides
|
|
|
|
pod.Spec.ActiveDeadlineSeconds = &timeout
|
|
|
|
pod.Spec.Volumes[0].VolumeSource = v1.VolumeSource{
|
|
|
|
HostPath: &v1.HostPathVolumeSource{
|
|
|
|
Path: spec.PersistentVolume.Spec.HostPath.Path,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return volume.RecycleVolumeByWatchingPodUntilCompletion(pvName, pod, plugin.host.GetKubeClient(), eventRecorder)
|
2015-05-29 20:34:02 +00:00
|
|
|
}
|
|
|
|
|
2015-09-07 16:11:37 +00:00
|
|
|
func (plugin *hostPathPlugin) NewDeleter(spec *volume.Spec) (volume.Deleter, error) {
|
Simplifies NFS and Host Path Plugin - Removed newRecyclerFunc, newDeleterFunc and newProvisionerFunc
struct hostPathPlugin contains newRecyclerFunc, newDeleterFunc and newProvisionerFunc items that have only one instance, i.e. newRecycler, newDeleter or newProvisioner function.
That's why the newRecyclerFunc, newDeleterFunc and newProvisionerFunc items are removed and the newRecycler, newDeleter or newProvisioner functions are called directly.
In addition, the TestRecycler tests whether NewFakeRecycler function is called and returns nil. This is no longer needed so this particular part of the test is removed. In addition, the no longer used NewFakeRecycler function is removed also.
Similarly for the NFS plugin, struct nfsPlugin contains newRecyclerFunc item that has only one instance, i.e. newRecycler function. That's why the newRecyclerFunc item is removed and the newRecycler function is called directly. In addition, the TestRecycler tests whether newMockRecycler function is called and returns nil. This is no longer needed so this particular part of the test is removed. In addition, the no longer used newMockRecycler function is removed also.
2016-10-25 10:36:49 +00:00
|
|
|
return newDeleter(spec, plugin.host)
|
2015-09-07 16:11:37 +00:00
|
|
|
}
|
|
|
|
|
2015-10-12 18:27:49 +00:00
|
|
|
func (plugin *hostPathPlugin) NewProvisioner(options volume.VolumeOptions) (volume.Provisioner, error) {
|
2016-08-18 08:36:49 +00:00
|
|
|
if !plugin.config.ProvisioningEnabled {
|
|
|
|
return nil, fmt.Errorf("Provisioning in volume plugin %q is disabled", plugin.GetPluginName())
|
|
|
|
}
|
Simplifies NFS and Host Path Plugin - Removed newRecyclerFunc, newDeleterFunc and newProvisionerFunc
struct hostPathPlugin contains newRecyclerFunc, newDeleterFunc and newProvisionerFunc items that have only one instance, i.e. newRecycler, newDeleter or newProvisioner function.
That's why the newRecyclerFunc, newDeleterFunc and newProvisionerFunc items are removed and the newRecycler, newDeleter or newProvisioner functions are called directly.
In addition, the TestRecycler tests whether NewFakeRecycler function is called and returns nil. This is no longer needed so this particular part of the test is removed. In addition, the no longer used NewFakeRecycler function is removed also.
Similarly for the NFS plugin, struct nfsPlugin contains newRecyclerFunc item that has only one instance, i.e. newRecycler function. That's why the newRecyclerFunc item is removed and the newRecycler function is called directly. In addition, the TestRecycler tests whether newMockRecycler function is called and returns nil. This is no longer needed so this particular part of the test is removed. In addition, the no longer used newMockRecycler function is removed also.
2016-10-25 10:36:49 +00:00
|
|
|
return newProvisioner(options, plugin.host, plugin)
|
2015-09-07 19:55:28 +00:00
|
|
|
}
|
|
|
|
|
2016-06-23 19:46:21 +00:00
|
|
|
func (plugin *hostPathPlugin) ConstructVolumeSpec(volumeName, mountPath string) (*volume.Spec, error) {
|
2016-11-18 20:58:56 +00:00
|
|
|
hostPathVolume := &v1.Volume{
|
2016-06-23 19:46:21 +00:00
|
|
|
Name: volumeName,
|
2016-11-18 20:58:56 +00:00
|
|
|
VolumeSource: v1.VolumeSource{
|
|
|
|
HostPath: &v1.HostPathVolumeSource{
|
2016-06-23 19:46:21 +00:00
|
|
|
Path: volumeName,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return volume.NewSpecFromVolume(hostPathVolume), nil
|
|
|
|
}
|
|
|
|
|
2015-09-07 16:11:37 +00:00
|
|
|
func newDeleter(spec *volume.Spec, host volume.VolumeHost) (volume.Deleter, error) {
|
|
|
|
if spec.PersistentVolume != nil && spec.PersistentVolume.Spec.HostPath == nil {
|
|
|
|
return nil, fmt.Errorf("spec.PersistentVolumeSource.HostPath is nil")
|
|
|
|
}
|
2015-12-04 20:40:01 +00:00
|
|
|
path := spec.PersistentVolume.Spec.HostPath.Path
|
2016-03-24 19:05:08 +00:00
|
|
|
return &hostPathDeleter{name: spec.Name(), path: path, host: host}, nil
|
2015-09-07 16:11:37 +00:00
|
|
|
}
|
|
|
|
|
2016-10-12 10:22:01 +00:00
|
|
|
func newProvisioner(options volume.VolumeOptions, host volume.VolumeHost, plugin *hostPathPlugin) (volume.Provisioner, error) {
|
|
|
|
return &hostPathProvisioner{options: options, host: host, plugin: plugin}, nil
|
2015-09-07 19:55:28 +00:00
|
|
|
}
|
|
|
|
|
2014-11-23 15:47:25 +00:00
|
|
|
// HostPath volumes represent a bare host file or directory mount.
|
|
|
|
// The direct at the specified path will be directly exposed to the container.
|
|
|
|
type hostPath struct {
|
|
|
|
path string
|
2016-03-24 19:05:08 +00:00
|
|
|
volume.MetricsNil
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
2015-07-20 09:16:11 +00:00
|
|
|
func (hp *hostPath) GetPath() string {
|
|
|
|
return hp.path
|
|
|
|
}
|
|
|
|
|
2016-03-23 05:12:21 +00:00
|
|
|
type hostPathMounter struct {
|
2015-07-20 09:16:11 +00:00
|
|
|
*hostPath
|
2015-07-01 14:50:39 +00:00
|
|
|
readOnly bool
|
2015-07-20 09:16:11 +00:00
|
|
|
}
|
|
|
|
|
2016-03-23 05:12:21 +00:00
|
|
|
var _ volume.Mounter = &hostPathMounter{}
|
2015-07-20 09:16:11 +00:00
|
|
|
|
2016-03-23 05:12:21 +00:00
|
|
|
func (b *hostPathMounter) GetAttributes() volume.Attributes {
|
2015-10-30 20:25:36 +00:00
|
|
|
return volume.Attributes{
|
2016-01-11 16:10:55 +00:00
|
|
|
ReadOnly: b.readOnly,
|
|
|
|
Managed: false,
|
|
|
|
SupportsSELinux: false,
|
2015-10-30 20:25:36 +00:00
|
|
|
}
|
2015-10-20 18:49:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-03 19:15:52 +00:00
|
|
|
// Checks prior to mount operations to verify that the required components (binaries, etc.)
|
|
|
|
// to mount the volume are available on the underlying node.
|
|
|
|
// If not, it returns an error
|
|
|
|
func (b *hostPathMounter) CanMount() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-11-23 15:47:25 +00:00
|
|
|
// SetUp does nothing.
|
2017-04-20 10:57:07 +00:00
|
|
|
func (b *hostPathMounter) SetUp(fsGroup *types.UnixGroupID) error {
|
2014-11-23 15:47:25 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-07 21:38:50 +00:00
|
|
|
// SetUpAt does not make sense for host paths - probably programmer error.
|
2017-04-20 10:57:07 +00:00
|
|
|
func (b *hostPathMounter) SetUpAt(dir string, fsGroup *types.UnixGroupID) error {
|
2015-03-07 21:38:50 +00:00
|
|
|
return fmt.Errorf("SetUpAt() does not make sense for host paths")
|
|
|
|
}
|
|
|
|
|
2016-03-23 05:12:21 +00:00
|
|
|
func (b *hostPathMounter) GetPath() string {
|
2015-06-29 16:54:43 +00:00
|
|
|
return b.path
|
|
|
|
}
|
|
|
|
|
2016-03-23 05:12:21 +00:00
|
|
|
type hostPathUnmounter struct {
|
2015-07-20 09:16:11 +00:00
|
|
|
*hostPath
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
2016-03-23 05:12:21 +00:00
|
|
|
var _ volume.Unmounter = &hostPathUnmounter{}
|
2015-07-20 09:16:11 +00:00
|
|
|
|
2014-11-23 15:47:25 +00:00
|
|
|
// TearDown does nothing.
|
2016-03-23 05:12:21 +00:00
|
|
|
func (c *hostPathUnmounter) TearDown() error {
|
2014-11-23 15:47:25 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-03-07 21:38:50 +00:00
|
|
|
|
|
|
|
// TearDownAt does not make sense for host paths - probably programmer error.
|
2016-03-23 05:12:21 +00:00
|
|
|
func (c *hostPathUnmounter) TearDownAt(dir string) error {
|
2015-03-07 21:38:50 +00:00
|
|
|
return fmt.Errorf("TearDownAt() does not make sense for host paths")
|
|
|
|
}
|
2015-05-29 20:34:02 +00:00
|
|
|
|
2015-10-12 18:27:49 +00:00
|
|
|
// hostPathProvisioner implements a Provisioner for the HostPath plugin
|
2015-09-07 19:55:28 +00:00
|
|
|
// This implementation is meant for testing only and only works in a single node cluster.
|
2015-10-12 18:27:49 +00:00
|
|
|
type hostPathProvisioner struct {
|
2015-09-07 19:55:28 +00:00
|
|
|
host volume.VolumeHost
|
|
|
|
options volume.VolumeOptions
|
2016-10-12 10:22:01 +00:00
|
|
|
plugin *hostPathPlugin
|
2015-09-07 19:55:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create for hostPath simply creates a local /tmp/hostpath_pv/%s directory as a new PersistentVolume.
|
2015-10-12 18:27:49 +00:00
|
|
|
// This Provisioner is meant for development and testing only and WILL NOT WORK in a multi-node cluster.
|
2016-11-18 20:58:56 +00:00
|
|
|
func (r *hostPathProvisioner) Provision() (*v1.PersistentVolume, error) {
|
2016-07-26 15:13:18 +00:00
|
|
|
fullpath := fmt.Sprintf("/tmp/hostpath_pv/%s", uuid.NewUUID())
|
2016-05-17 12:55:24 +00:00
|
|
|
|
2016-11-18 20:58:56 +00:00
|
|
|
capacity := r.options.PVC.Spec.Resources.Requests[v1.ResourceName(v1.ResourceStorage)]
|
|
|
|
pv := &v1.PersistentVolume{
|
2017-01-17 03:38:19 +00:00
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2016-05-17 12:55:24 +00:00
|
|
|
Name: r.options.PVName,
|
2015-10-12 18:27:49 +00:00
|
|
|
Annotations: map[string]string{
|
2017-05-25 01:54:48 +00:00
|
|
|
volumehelper.VolumeDynamicallyCreatedByKey: "hostpath-dynamic-provisioner",
|
2015-09-07 19:55:28 +00:00
|
|
|
},
|
|
|
|
},
|
2016-11-18 20:58:56 +00:00
|
|
|
Spec: v1.PersistentVolumeSpec{
|
2015-09-18 13:15:48 +00:00
|
|
|
PersistentVolumeReclaimPolicy: r.options.PersistentVolumeReclaimPolicy,
|
2016-10-12 10:22:01 +00:00
|
|
|
AccessModes: r.options.PVC.Spec.AccessModes,
|
2016-11-18 20:58:56 +00:00
|
|
|
Capacity: v1.ResourceList{
|
|
|
|
v1.ResourceName(v1.ResourceStorage): capacity,
|
2015-09-07 19:55:28 +00:00
|
|
|
},
|
2016-11-18 20:58:56 +00:00
|
|
|
PersistentVolumeSource: v1.PersistentVolumeSource{
|
|
|
|
HostPath: &v1.HostPathVolumeSource{
|
2015-09-07 19:55:28 +00:00
|
|
|
Path: fullpath,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2016-05-17 12:55:24 +00:00
|
|
|
}
|
2016-10-12 10:22:01 +00:00
|
|
|
if len(r.options.PVC.Spec.AccessModes) == 0 {
|
|
|
|
pv.Spec.AccessModes = r.plugin.GetAccessModes()
|
|
|
|
}
|
2016-05-17 12:55:24 +00:00
|
|
|
|
|
|
|
return pv, os.MkdirAll(pv.Spec.HostPath.Path, 0750)
|
2015-09-07 19:55:28 +00:00
|
|
|
}
|
|
|
|
|
2015-09-07 16:11:37 +00:00
|
|
|
// hostPathDeleter deletes a hostPath PV from the cluster.
|
|
|
|
// This deleter only works on a single host cluster and is for testing purposes only.
|
|
|
|
type hostPathDeleter struct {
|
|
|
|
name string
|
|
|
|
path string
|
|
|
|
host volume.VolumeHost
|
2016-03-24 19:05:08 +00:00
|
|
|
volume.MetricsNil
|
2015-09-07 16:11:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *hostPathDeleter) GetPath() string {
|
|
|
|
return r.path
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete for hostPath removes the local directory so long as it is beneath /tmp/*.
|
|
|
|
// THIS IS FOR TESTING AND LOCAL DEVELOPMENT ONLY! This message should scare you away from using
|
|
|
|
// this deleter for anything other than development and testing.
|
|
|
|
func (r *hostPathDeleter) Delete() error {
|
|
|
|
regexp := regexp.MustCompile("/tmp/.+")
|
|
|
|
if !regexp.MatchString(r.GetPath()) {
|
|
|
|
return fmt.Errorf("host_path deleter only supports /tmp/.+ but received provided %s", r.GetPath())
|
|
|
|
}
|
|
|
|
return os.RemoveAll(r.GetPath())
|
|
|
|
}
|
2016-05-30 22:48:21 +00:00
|
|
|
|
2016-05-30 02:22:22 +00:00
|
|
|
func getVolumeSource(
|
2016-11-18 20:58:56 +00:00
|
|
|
spec *volume.Spec) (*v1.HostPathVolumeSource, bool, error) {
|
2016-05-30 22:48:21 +00:00
|
|
|
if spec.Volume != nil && spec.Volume.HostPath != nil {
|
2016-05-30 02:22:22 +00:00
|
|
|
return spec.Volume.HostPath, spec.ReadOnly, nil
|
|
|
|
} else if spec.PersistentVolume != nil &&
|
|
|
|
spec.PersistentVolume.Spec.HostPath != nil {
|
|
|
|
return spec.PersistentVolume.Spec.HostPath, spec.ReadOnly, nil
|
2016-05-30 22:48:21 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 02:22:22 +00:00
|
|
|
return nil, false, fmt.Errorf("Spec does not reference an HostPath volume type")
|
2016-05-30 22:48:21 +00:00
|
|
|
}
|