2015-02-10 19:00:11 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
2015-02-10 19:00:11 +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 nfs
|
|
|
|
|
|
|
|
import (
|
2015-04-03 01:08:04 +00:00
|
|
|
"fmt"
|
2015-02-10 19:00:11 +00:00
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/types"
|
2015-03-24 14:39:51 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
|
2015-04-03 01:08:04 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/mount"
|
2015-03-19 05:18:31 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume"
|
2015-05-29 20:34:02 +00:00
|
|
|
|
2015-02-10 19:00:11 +00:00
|
|
|
"github.com/golang/glog"
|
|
|
|
)
|
|
|
|
|
|
|
|
// This is the primary entrypoint for volume plugins.
|
2015-05-29 20:34:02 +00:00
|
|
|
// Tests covering recycling should not use this func but instead
|
|
|
|
// use their own array of plugins w/ a custom recyclerFunc as appropriate
|
2015-03-19 05:18:31 +00:00
|
|
|
func ProbeVolumePlugins() []volume.VolumePlugin {
|
2015-05-29 20:34:02 +00:00
|
|
|
return []volume.VolumePlugin{&nfsPlugin{nil, newRecycler}}
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type nfsPlugin struct {
|
2015-05-11 16:23:46 +00:00
|
|
|
host volume.VolumeHost
|
2015-05-29 20:34:02 +00:00
|
|
|
// decouple creating recyclers by deferring to a function. Allows for easier testing.
|
|
|
|
newRecyclerFunc func(spec *volume.Spec, host volume.VolumeHost) (volume.Recycler, error)
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-03-19 05:18:31 +00:00
|
|
|
var _ volume.VolumePlugin = &nfsPlugin{}
|
2015-05-29 20:34:02 +00:00
|
|
|
var _ volume.PersistentVolumePlugin = &nfsPlugin{}
|
|
|
|
var _ volume.RecyclableVolumePlugin = &nfsPlugin{}
|
2015-02-10 19:00:11 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
nfsPluginName = "kubernetes.io/nfs"
|
|
|
|
)
|
|
|
|
|
2015-03-19 05:18:31 +00:00
|
|
|
func (plugin *nfsPlugin) Init(host volume.VolumeHost) {
|
2015-02-10 19:00:11 +00:00
|
|
|
plugin.host = host
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *nfsPlugin) Name() string {
|
|
|
|
return nfsPluginName
|
|
|
|
}
|
|
|
|
|
2015-04-14 16:29:33 +00:00
|
|
|
func (plugin *nfsPlugin) CanSupport(spec *volume.Spec) bool {
|
2015-05-22 19:10:40 +00:00
|
|
|
return spec.VolumeSource.NFS != nil || spec.PersistentVolumeSource.NFS != nil
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-05-18 20:22:30 +00:00
|
|
|
func (plugin *nfsPlugin) GetAccessModes() []api.PersistentVolumeAccessMode {
|
|
|
|
return []api.PersistentVolumeAccessMode{
|
2015-03-12 19:37:02 +00:00
|
|
|
api.ReadWriteOnce,
|
|
|
|
api.ReadOnlyMany,
|
|
|
|
api.ReadWriteMany,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-11 16:23:46 +00:00
|
|
|
func (plugin *nfsPlugin) NewBuilder(spec *volume.Spec, pod *api.Pod, _ volume.VolumeOptions, mounter mount.Interface) (volume.Builder, error) {
|
|
|
|
return plugin.newBuilderInternal(spec, pod, mounter)
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-05-11 00:12:57 +00:00
|
|
|
func (plugin *nfsPlugin) newBuilderInternal(spec *volume.Spec, pod *api.Pod, mounter mount.Interface) (volume.Builder, error) {
|
2015-06-01 14:34:40 +00:00
|
|
|
var source *api.NFSVolumeSource
|
2015-07-01 14:50:39 +00:00
|
|
|
var readOnly bool
|
2015-06-01 14:34:40 +00:00
|
|
|
if spec.VolumeSource.NFS != nil {
|
|
|
|
source = spec.VolumeSource.NFS
|
2015-07-01 14:50:39 +00:00
|
|
|
readOnly = spec.VolumeSource.NFS.ReadOnly
|
2015-06-01 14:34:40 +00:00
|
|
|
} else {
|
|
|
|
source = spec.PersistentVolumeSource.NFS
|
2015-07-01 14:50:39 +00:00
|
|
|
readOnly = spec.ReadOnly
|
2015-06-01 14:34:40 +00:00
|
|
|
}
|
2015-07-20 06:00:07 +00:00
|
|
|
return &nfsBuilder{
|
|
|
|
nfs: &nfs{
|
|
|
|
volName: spec.Name,
|
|
|
|
mounter: mounter,
|
|
|
|
pod: pod,
|
|
|
|
plugin: plugin,
|
|
|
|
},
|
2015-06-01 14:34:40 +00:00
|
|
|
server: source.Server,
|
|
|
|
exportPath: source.Path,
|
2015-07-01 14:50:39 +00:00
|
|
|
readOnly: readOnly,
|
|
|
|
}, nil
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-05-11 16:23:46 +00:00
|
|
|
func (plugin *nfsPlugin) NewCleaner(volName string, podUID types.UID, mounter mount.Interface) (volume.Cleaner, error) {
|
|
|
|
return plugin.newCleanerInternal(volName, podUID, mounter)
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-03 01:08:04 +00:00
|
|
|
func (plugin *nfsPlugin) newCleanerInternal(volName string, podUID types.UID, mounter mount.Interface) (volume.Cleaner, error) {
|
2015-07-20 06:00:07 +00:00
|
|
|
return &nfsCleaner{&nfs{
|
|
|
|
volName: volName,
|
|
|
|
mounter: mounter,
|
|
|
|
pod: &api.Pod{ObjectMeta: api.ObjectMeta{UID: podUID}},
|
|
|
|
plugin: plugin,
|
|
|
|
}}, nil
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-05-29 20:34:02 +00:00
|
|
|
func (plugin *nfsPlugin) NewRecycler(spec *volume.Spec) (volume.Recycler, error) {
|
|
|
|
return plugin.newRecyclerFunc(spec, plugin.host)
|
|
|
|
}
|
|
|
|
|
2015-02-10 19:00:11 +00:00
|
|
|
// NFS volumes represent a bare host file or directory mount of an NFS export.
|
|
|
|
type nfs struct {
|
2015-07-20 06:00:07 +00:00
|
|
|
volName string
|
|
|
|
pod *api.Pod
|
|
|
|
mounter mount.Interface
|
|
|
|
plugin *nfsPlugin
|
|
|
|
// decouple creating recyclers by deferring to a function. Allows for easier testing.
|
|
|
|
newRecyclerFunc func(spec *volume.Spec, host volume.VolumeHost) (volume.Recycler, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (nfsVolume *nfs) GetPath() string {
|
|
|
|
name := nfsPluginName
|
|
|
|
return nfsVolume.plugin.host.GetPodVolumeDir(nfsVolume.pod.UID, util.EscapeQualifiedNameForDisk(name), nfsVolume.volName)
|
|
|
|
}
|
|
|
|
|
|
|
|
type nfsBuilder struct {
|
|
|
|
*nfs
|
2015-02-10 19:00:11 +00:00
|
|
|
server string
|
|
|
|
exportPath string
|
|
|
|
readOnly bool
|
|
|
|
}
|
|
|
|
|
2015-07-20 06:00:07 +00:00
|
|
|
var _ volume.Builder = &nfsBuilder{}
|
|
|
|
|
2015-02-10 19:00:11 +00:00
|
|
|
// SetUp attaches the disk and bind mounts to the volume path.
|
2015-07-20 06:00:07 +00:00
|
|
|
func (b *nfsBuilder) SetUp() error {
|
|
|
|
return b.SetUpAt(b.GetPath())
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-07-20 06:00:07 +00:00
|
|
|
func (b *nfsBuilder) SetUpAt(dir string) error {
|
|
|
|
mountpoint, err := b.mounter.IsMountPoint(dir)
|
2015-02-10 19:00:11 +00:00
|
|
|
glog.V(4).Infof("NFS mount set up: %s %v %v", dir, mountpoint, err)
|
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if mountpoint {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
os.MkdirAll(dir, 0750)
|
2015-07-20 06:00:07 +00:00
|
|
|
source := fmt.Sprintf("%s:%s", b.server, b.exportPath)
|
2015-04-03 01:08:04 +00:00
|
|
|
options := []string{}
|
2015-07-20 06:00:07 +00:00
|
|
|
if b.readOnly {
|
2015-04-03 01:08:04 +00:00
|
|
|
options = append(options, "ro")
|
|
|
|
}
|
2015-07-20 06:00:07 +00:00
|
|
|
err = b.mounter.Mount(source, dir, "nfs", options)
|
2015-02-10 19:00:11 +00:00
|
|
|
if err != nil {
|
2015-07-20 06:00:07 +00:00
|
|
|
mountpoint, mntErr := b.mounter.IsMountPoint(dir)
|
2015-02-10 19:00:11 +00:00
|
|
|
if mntErr != nil {
|
|
|
|
glog.Errorf("IsMountpoint check failed: %v", mntErr)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if mountpoint {
|
2015-07-20 06:00:07 +00:00
|
|
|
if mntErr = b.mounter.Unmount(dir); mntErr != nil {
|
2015-02-10 19:00:11 +00:00
|
|
|
glog.Errorf("Failed to unmount: %v", mntErr)
|
|
|
|
return err
|
|
|
|
}
|
2015-07-20 06:00:07 +00:00
|
|
|
mountpoint, mntErr := b.mounter.IsMountPoint(dir)
|
2015-02-10 19:00:11 +00:00
|
|
|
if mntErr != nil {
|
|
|
|
glog.Errorf("IsMountpoint check failed: %v", mntErr)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if mountpoint {
|
|
|
|
// This is very odd, we don't expect it. We'll try again next sync loop.
|
|
|
|
glog.Errorf("%s is still mounted, despite call to unmount(). Will try again next sync loop.", dir)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
os.Remove(dir)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-07-24 19:04:03 +00:00
|
|
|
func (b *nfsBuilder) IsReadOnly() bool {
|
|
|
|
return b.readOnly
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-07-24 19:04:03 +00:00
|
|
|
//
|
|
|
|
//func (c *nfsCleaner) GetPath() string {
|
|
|
|
// name := nfsPluginName
|
|
|
|
// return c.plugin.host.GetPodVolumeDir(c.pod.UID, util.EscapeQualifiedNameForDisk(name), c.volName)
|
|
|
|
//}
|
2015-06-29 16:54:43 +00:00
|
|
|
|
2015-07-20 06:00:07 +00:00
|
|
|
var _ volume.Cleaner = &nfsCleaner{}
|
|
|
|
|
2015-07-24 19:04:03 +00:00
|
|
|
type nfsCleaner struct {
|
|
|
|
*nfs
|
|
|
|
}
|
2015-07-20 06:00:07 +00:00
|
|
|
|
|
|
|
func (c *nfsCleaner) TearDown() error {
|
|
|
|
return c.TearDownAt(c.GetPath())
|
2015-02-10 19:00:11 +00:00
|
|
|
}
|
|
|
|
|
2015-07-20 06:00:07 +00:00
|
|
|
func (c *nfsCleaner) TearDownAt(dir string) error {
|
|
|
|
mountpoint, err := c.mounter.IsMountPoint(dir)
|
2015-02-10 19:00:11 +00:00
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("Error checking IsMountPoint: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !mountpoint {
|
|
|
|
return os.Remove(dir)
|
|
|
|
}
|
|
|
|
|
2015-07-20 06:00:07 +00:00
|
|
|
if err := c.mounter.Unmount(dir); err != nil {
|
2015-02-10 19:00:11 +00:00
|
|
|
glog.Errorf("Unmounting failed: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
2015-07-20 06:00:07 +00:00
|
|
|
mountpoint, mntErr := c.mounter.IsMountPoint(dir)
|
2015-02-10 19:00:11 +00:00
|
|
|
if mntErr != nil {
|
|
|
|
glog.Errorf("IsMountpoint check failed: %v", mntErr)
|
|
|
|
return mntErr
|
|
|
|
}
|
|
|
|
if !mountpoint {
|
|
|
|
if err := os.Remove(dir); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2015-05-29 20:34:02 +00:00
|
|
|
|
2015-07-20 06:00:07 +00:00
|
|
|
func newRecycler(spec *volume.Spec, host volume.VolumeHost) (volume.Recycler, error) {
|
2015-07-29 18:13:05 +00:00
|
|
|
if spec.PersistentVolumeSource.NFS == nil {
|
|
|
|
return nil, fmt.Errorf("spec.PersistentVolumeSource.NFS is nil")
|
2015-07-20 06:00:07 +00:00
|
|
|
}
|
2015-07-29 18:13:05 +00:00
|
|
|
return &nfsRecycler{
|
|
|
|
name: spec.Name,
|
|
|
|
server: spec.PersistentVolumeSource.NFS.Server,
|
|
|
|
path: spec.PersistentVolumeSource.NFS.Path,
|
|
|
|
host: host,
|
|
|
|
}, nil
|
2015-07-20 06:00:07 +00:00
|
|
|
}
|
|
|
|
|
2015-05-29 20:34:02 +00:00
|
|
|
// nfsRecycler scrubs an NFS volume by running "rm -rf" on the volume in a pod.
|
|
|
|
type nfsRecycler struct {
|
|
|
|
name string
|
|
|
|
server string
|
|
|
|
path string
|
|
|
|
host volume.VolumeHost
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *nfsRecycler) GetPath() string {
|
|
|
|
return r.path
|
|
|
|
}
|
|
|
|
|
|
|
|
// Recycler provides methods to reclaim the volume resource.
|
|
|
|
// A NFS volume is recycled by scheduling a pod to run "rm -rf" on the contents of the volume.
|
|
|
|
// Recycle blocks until the pod has completed or any error occurs.
|
|
|
|
// The scrubber pod's is expected to succeed within 5 minutes else an error will be returned
|
|
|
|
func (r *nfsRecycler) Recycle() error {
|
2015-06-20 04:34:29 +00:00
|
|
|
timeout := int64(300) // 5 minutes
|
2015-05-29 20:34:02 +00:00
|
|
|
pod := &api.Pod{
|
|
|
|
ObjectMeta: api.ObjectMeta{
|
|
|
|
GenerateName: "pv-scrubber-" + util.ShortenString(r.name, 44) + "-",
|
|
|
|
Namespace: api.NamespaceDefault,
|
|
|
|
},
|
|
|
|
Spec: api.PodSpec{
|
|
|
|
ActiveDeadlineSeconds: &timeout,
|
|
|
|
RestartPolicy: api.RestartPolicyNever,
|
|
|
|
Volumes: []api.Volume{
|
|
|
|
{
|
|
|
|
Name: "vol",
|
|
|
|
VolumeSource: api.VolumeSource{
|
|
|
|
NFS: &api.NFSVolumeSource{
|
|
|
|
Server: r.server,
|
|
|
|
Path: r.path,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Containers: []api.Container{
|
|
|
|
{
|
|
|
|
Name: "scrubber",
|
2015-06-16 20:15:19 +00:00
|
|
|
Image: "gcr.io/google_containers/busybox",
|
2015-05-29 20:34:02 +00:00
|
|
|
// delete the contents of the volume, but not the directory itself
|
|
|
|
Command: []string{"/bin/sh"},
|
|
|
|
// the scrubber:
|
|
|
|
// 1. validates the /scrub directory exists
|
|
|
|
// 2. creates a text file to be scrubbed
|
|
|
|
// 3. performs rm -rf on the directory
|
|
|
|
// 4. tests to see if the directory is empty
|
|
|
|
// the pod fails if the error code is returned
|
|
|
|
Args: []string{"-c", "test -e /scrub && echo $(date) > /scrub/trash.txt && rm -rf /scrub/* && test -z \"$(ls -A /scrub)\" || exit 1"},
|
|
|
|
VolumeMounts: []api.VolumeMount{
|
|
|
|
{
|
|
|
|
Name: "vol",
|
|
|
|
MountPath: "/scrub",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return volume.ScrubPodVolumeAndWatchUntilCompletion(pod, r.host.GetKubeClient())
|
|
|
|
}
|