2015-03-06 14:26:39 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
2015-03-06 14:26:39 +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.
|
|
|
|
*/
|
|
|
|
|
2015-04-09 13:40:48 +00:00
|
|
|
package aws_ebs
|
2015-03-06 14:26:39 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path"
|
2015-04-03 17:53:47 +00:00
|
|
|
"path/filepath"
|
2015-03-06 14:26:39 +00:00
|
|
|
"strconv"
|
2015-04-02 19:55:43 +00:00
|
|
|
"strings"
|
2015-03-06 14:26:39 +00:00
|
|
|
|
2015-08-05 22:05:17 +00:00
|
|
|
"github.com/golang/glog"
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2015-10-19 21:08:35 +00:00
|
|
|
awscloud "k8s.io/kubernetes/pkg/cloudprovider/providers/aws"
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/types"
|
|
|
|
"k8s.io/kubernetes/pkg/util"
|
|
|
|
"k8s.io/kubernetes/pkg/util/exec"
|
|
|
|
"k8s.io/kubernetes/pkg/util/mount"
|
|
|
|
"k8s.io/kubernetes/pkg/volume"
|
2015-03-06 14:26:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// This is the primary entrypoint for volume plugins.
|
|
|
|
func ProbeVolumePlugins() []volume.VolumePlugin {
|
2015-04-07 21:16:36 +00:00
|
|
|
return []volume.VolumePlugin{&awsElasticBlockStorePlugin{nil}}
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
type awsElasticBlockStorePlugin struct {
|
2015-03-06 14:26:39 +00:00
|
|
|
host volume.VolumeHost
|
|
|
|
}
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
var _ volume.VolumePlugin = &awsElasticBlockStorePlugin{}
|
2015-06-26 20:37:11 +00:00
|
|
|
var _ volume.PersistentVolumePlugin = &awsElasticBlockStorePlugin{}
|
2015-03-06 14:26:39 +00:00
|
|
|
|
|
|
|
const (
|
2015-04-07 21:16:36 +00:00
|
|
|
awsElasticBlockStorePluginName = "kubernetes.io/aws-ebs"
|
2015-03-06 14:26:39 +00:00
|
|
|
)
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
func (plugin *awsElasticBlockStorePlugin) Init(host volume.VolumeHost) {
|
2015-03-06 14:26:39 +00:00
|
|
|
plugin.host = host
|
|
|
|
}
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
func (plugin *awsElasticBlockStorePlugin) Name() string {
|
|
|
|
return awsElasticBlockStorePluginName
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
2015-04-14 16:29:33 +00:00
|
|
|
func (plugin *awsElasticBlockStorePlugin) CanSupport(spec *volume.Spec) bool {
|
2015-08-12 19:11:03 +00:00
|
|
|
return (spec.PersistentVolume != nil && spec.PersistentVolume.Spec.AWSElasticBlockStore != nil) ||
|
|
|
|
(spec.Volume != nil && spec.Volume.AWSElasticBlockStore != nil)
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
2015-05-18 20:22:30 +00:00
|
|
|
func (plugin *awsElasticBlockStorePlugin) GetAccessModes() []api.PersistentVolumeAccessMode {
|
|
|
|
return []api.PersistentVolumeAccessMode{
|
2015-03-06 14:26:39 +00:00
|
|
|
api.ReadWriteOnce,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-14 09:51:40 +00:00
|
|
|
func (plugin *awsElasticBlockStorePlugin) NewBuilder(spec *volume.Spec, pod *api.Pod, _ volume.VolumeOptions) (volume.Builder, error) {
|
2015-03-06 14:26:39 +00:00
|
|
|
// Inject real implementations here, test through the internal function.
|
2015-09-14 09:51:40 +00:00
|
|
|
return plugin.newBuilderInternal(spec, pod.UID, &AWSDiskUtil{}, plugin.host.GetMounter())
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
2015-06-29 17:36:06 +00:00
|
|
|
func (plugin *awsElasticBlockStorePlugin) newBuilderInternal(spec *volume.Spec, podUID types.UID, manager ebsManager, mounter mount.Interface) (volume.Builder, error) {
|
2015-06-26 20:37:11 +00:00
|
|
|
// EBSs used directly in a pod have a ReadOnly flag set by the pod author.
|
|
|
|
// EBSs used as a PersistentVolume gets the ReadOnly flag indirectly through the persistent-claim volume used to mount the PV
|
|
|
|
var readOnly bool
|
2015-04-14 16:29:33 +00:00
|
|
|
var ebs *api.AWSElasticBlockStoreVolumeSource
|
2015-08-12 19:11:03 +00:00
|
|
|
if spec.Volume != nil && spec.Volume.AWSElasticBlockStore != nil {
|
|
|
|
ebs = spec.Volume.AWSElasticBlockStore
|
2015-06-26 20:37:11 +00:00
|
|
|
readOnly = ebs.ReadOnly
|
2015-04-14 16:29:33 +00:00
|
|
|
} else {
|
2015-08-12 19:11:03 +00:00
|
|
|
ebs = spec.PersistentVolume.Spec.AWSElasticBlockStore
|
2015-06-26 20:37:11 +00:00
|
|
|
readOnly = spec.ReadOnly
|
2015-04-14 16:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
volumeID := ebs.VolumeID
|
|
|
|
fsType := ebs.FSType
|
2015-03-06 14:26:39 +00:00
|
|
|
partition := ""
|
2015-04-14 16:29:33 +00:00
|
|
|
if ebs.Partition != 0 {
|
|
|
|
partition = strconv.Itoa(ebs.Partition)
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
2015-07-16 14:47:01 +00:00
|
|
|
return &awsElasticBlockStoreBuilder{
|
|
|
|
awsElasticBlockStore: &awsElasticBlockStore{
|
|
|
|
podUID: podUID,
|
2015-08-12 19:11:03 +00:00
|
|
|
volName: spec.Name(),
|
2015-07-16 14:47:01 +00:00
|
|
|
volumeID: volumeID,
|
|
|
|
manager: manager,
|
|
|
|
mounter: mounter,
|
|
|
|
plugin: plugin,
|
|
|
|
},
|
2015-03-06 14:26:39 +00:00
|
|
|
fsType: fsType,
|
|
|
|
partition: partition,
|
|
|
|
readOnly: readOnly,
|
2015-09-14 09:51:40 +00:00
|
|
|
diskMounter: &mount.SafeFormatAndMount{plugin.host.GetMounter(), exec.New()}}, nil
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
2015-09-14 09:51:40 +00:00
|
|
|
func (plugin *awsElasticBlockStorePlugin) NewCleaner(volName string, podUID types.UID) (volume.Cleaner, error) {
|
2015-03-06 14:26:39 +00:00
|
|
|
// Inject real implementations here, test through the internal function.
|
2015-09-14 09:51:40 +00:00
|
|
|
return plugin.newCleanerInternal(volName, podUID, &AWSDiskUtil{}, plugin.host.GetMounter())
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
2015-06-29 17:36:06 +00:00
|
|
|
func (plugin *awsElasticBlockStorePlugin) newCleanerInternal(volName string, podUID types.UID, manager ebsManager, mounter mount.Interface) (volume.Cleaner, error) {
|
2015-07-16 14:47:01 +00:00
|
|
|
return &awsElasticBlockStoreCleaner{&awsElasticBlockStore{
|
|
|
|
podUID: podUID,
|
|
|
|
volName: volName,
|
|
|
|
manager: manager,
|
|
|
|
mounter: mounter,
|
|
|
|
plugin: plugin,
|
|
|
|
}}, nil
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Abstract interface to PD operations.
|
2015-06-29 17:36:06 +00:00
|
|
|
type ebsManager interface {
|
2015-03-06 14:26:39 +00:00
|
|
|
// Attaches the disk to the kubelet's host machine.
|
2015-07-16 14:47:01 +00:00
|
|
|
AttachAndMountDisk(b *awsElasticBlockStoreBuilder, globalPDPath string) error
|
2015-03-06 14:26:39 +00:00
|
|
|
// Detaches the disk from the kubelet's host machine.
|
2015-07-16 14:47:01 +00:00
|
|
|
DetachDisk(c *awsElasticBlockStoreCleaner) error
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:04:36 +00:00
|
|
|
// awsElasticBlockStore volumes are disk resources provided by Amazon Web Services
|
2015-03-06 14:26:39 +00:00
|
|
|
// that are attached to the kubelet's host machine and exposed to the pod.
|
2015-04-07 21:16:36 +00:00
|
|
|
type awsElasticBlockStore struct {
|
2015-03-06 14:26:39 +00:00
|
|
|
volName string
|
|
|
|
podUID types.UID
|
2015-04-07 20:23:12 +00:00
|
|
|
// Unique id of the PD, used to find the disk resource in the provider.
|
2015-04-09 13:34:16 +00:00
|
|
|
volumeID string
|
2015-03-06 14:26:39 +00:00
|
|
|
// Utility interface that provides API calls to the provider to attach/detach disks.
|
2015-06-29 17:36:06 +00:00
|
|
|
manager ebsManager
|
2015-03-06 14:26:39 +00:00
|
|
|
// Mounter interface that provides system calls to mount the global path to the pod local path.
|
|
|
|
mounter mount.Interface
|
2015-07-16 14:47:01 +00:00
|
|
|
plugin *awsElasticBlockStorePlugin
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
2015-06-29 17:00:33 +00:00
|
|
|
func detachDiskLogError(ebs *awsElasticBlockStore) {
|
2015-07-16 14:47:01 +00:00
|
|
|
err := ebs.manager.DetachDisk(&awsElasticBlockStoreCleaner{ebs})
|
2015-03-06 14:26:39 +00:00
|
|
|
if err != nil {
|
2015-06-29 17:00:33 +00:00
|
|
|
glog.Warningf("Failed to detach disk: %v (%v)", ebs, err)
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// getVolumeProvider returns the AWS Volumes interface
|
2015-10-19 21:08:35 +00:00
|
|
|
func (ebs *awsElasticBlockStore) getVolumeProvider() (awscloud.Volumes, error) {
|
2015-09-10 08:14:16 +00:00
|
|
|
cloud := ebs.plugin.host.GetCloudProvider()
|
2015-10-19 21:08:35 +00:00
|
|
|
volumes, ok := cloud.(awscloud.Volumes)
|
2015-03-06 14:26:39 +00:00
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("Cloud provider does not support volumes")
|
|
|
|
}
|
|
|
|
return volumes, nil
|
|
|
|
}
|
|
|
|
|
2015-07-16 14:47:01 +00:00
|
|
|
type awsElasticBlockStoreBuilder struct {
|
|
|
|
*awsElasticBlockStore
|
|
|
|
// Filesystem type, optional.
|
|
|
|
fsType string
|
|
|
|
// Specifies the partition to mount
|
|
|
|
partition string
|
|
|
|
// Specifies whether the disk will be attached as read-only.
|
|
|
|
readOnly bool
|
|
|
|
// diskMounter provides the interface that is used to mount the actual block device.
|
|
|
|
diskMounter mount.Interface
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ volume.Builder = &awsElasticBlockStoreBuilder{}
|
|
|
|
|
2015-10-30 20:25:36 +00:00
|
|
|
func (b *awsElasticBlockStoreBuilder) GetAttributes() volume.Attributes {
|
|
|
|
return volume.Attributes{
|
|
|
|
ReadOnly: b.readOnly,
|
|
|
|
Managed: !b.readOnly,
|
|
|
|
SupportsOwnershipManagement: true,
|
|
|
|
SupportsSELinux: true,
|
|
|
|
}
|
2015-10-20 18:49:39 +00:00
|
|
|
}
|
|
|
|
|
2015-03-06 14:26:39 +00:00
|
|
|
// SetUp attaches the disk and bind mounts to the volume path.
|
2015-07-16 14:47:01 +00:00
|
|
|
func (b *awsElasticBlockStoreBuilder) SetUp() error {
|
|
|
|
return b.SetUpAt(b.GetPath())
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetUpAt attaches the disk and bind mounts to the volume path.
|
2015-07-16 14:47:01 +00:00
|
|
|
func (b *awsElasticBlockStoreBuilder) SetUpAt(dir string) error {
|
2015-03-06 14:26:39 +00:00
|
|
|
// TODO: handle failed mounts here.
|
2015-04-16 23:49:53 +00:00
|
|
|
notMnt, err := b.mounter.IsLikelyNotMountPoint(dir)
|
|
|
|
glog.V(4).Infof("PersistentDisk set up: %s %v %v", dir, !notMnt, err)
|
2015-03-06 14:26:39 +00:00
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
return err
|
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
if !notMnt {
|
2015-03-06 14:26:39 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-07-16 14:47:01 +00:00
|
|
|
globalPDPath := makeGlobalPDPath(b.plugin.host, b.volumeID)
|
|
|
|
if err := b.manager.AttachAndMountDisk(b, globalPDPath); err != nil {
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := os.MkdirAll(dir, 0750); err != nil {
|
|
|
|
// TODO: we should really eject the attach/detach out into its own control loop.
|
2015-07-16 14:47:01 +00:00
|
|
|
detachDiskLogError(b.awsElasticBlockStore)
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Perform a bind mount to the full path to allow duplicate mounts of the same PD.
|
2015-04-03 01:08:04 +00:00
|
|
|
options := []string{"bind"}
|
2015-07-16 14:47:01 +00:00
|
|
|
if b.readOnly {
|
2015-04-03 01:08:04 +00:00
|
|
|
options = append(options, "ro")
|
|
|
|
}
|
2015-07-16 14:47:01 +00:00
|
|
|
err = b.mounter.Mount(globalPDPath, dir, "", options)
|
2015-03-06 14:26:39 +00:00
|
|
|
if err != nil {
|
2015-04-16 23:49:53 +00:00
|
|
|
notMnt, mntErr := b.mounter.IsLikelyNotMountPoint(dir)
|
2015-03-06 14:26:39 +00:00
|
|
|
if mntErr != nil {
|
2015-04-16 23:49:53 +00:00
|
|
|
glog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
if !notMnt {
|
2015-07-16 14:47:01 +00:00
|
|
|
if mntErr = b.mounter.Unmount(dir); mntErr != nil {
|
2015-03-06 14:26:39 +00:00
|
|
|
glog.Errorf("Failed to unmount: %v", mntErr)
|
|
|
|
return err
|
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
notMnt, mntErr := b.mounter.IsLikelyNotMountPoint(dir)
|
2015-03-06 14:26:39 +00:00
|
|
|
if mntErr != nil {
|
2015-04-16 23:49:53 +00:00
|
|
|
glog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
if !notMnt {
|
2015-03-06 14:26:39 +00:00
|
|
|
// 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)
|
|
|
|
// TODO: we should really eject the attach/detach out into its own control loop.
|
2015-07-16 14:47:01 +00:00
|
|
|
detachDiskLogError(b.awsElasticBlockStore)
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-04-09 13:34:16 +00:00
|
|
|
func makeGlobalPDPath(host volume.VolumeHost, volumeID string) string {
|
2015-04-02 18:56:11 +00:00
|
|
|
// Clean up the URI to be more fs-friendly
|
2015-04-09 13:34:16 +00:00
|
|
|
name := volumeID
|
2015-04-02 18:56:11 +00:00
|
|
|
name = strings.Replace(name, "://", "/", -1)
|
2015-04-07 21:16:36 +00:00
|
|
|
return path.Join(host.GetPluginDir(awsElasticBlockStorePluginName), "mounts", name)
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
2015-04-09 13:34:16 +00:00
|
|
|
func getVolumeIDFromGlobalMount(host volume.VolumeHost, globalPath string) (string, error) {
|
2015-04-07 21:16:36 +00:00
|
|
|
basePath := path.Join(host.GetPluginDir(awsElasticBlockStorePluginName), "mounts")
|
2015-04-03 17:03:37 +00:00
|
|
|
rel, err := filepath.Rel(basePath, globalPath)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if strings.Contains(rel, "../") {
|
|
|
|
return "", fmt.Errorf("Unexpected mount path: " + globalPath)
|
|
|
|
}
|
2015-04-07 20:23:12 +00:00
|
|
|
// Reverse the :// replacement done in makeGlobalPDPath
|
2015-04-09 13:34:16 +00:00
|
|
|
volumeID := rel
|
|
|
|
if strings.HasPrefix(volumeID, "aws/") {
|
|
|
|
volumeID = strings.Replace(volumeID, "aws/", "aws://", 1)
|
2015-04-03 17:03:37 +00:00
|
|
|
}
|
2015-04-09 13:34:16 +00:00
|
|
|
glog.V(2).Info("Mapping mount dir ", globalPath, " to volumeID ", volumeID)
|
|
|
|
return volumeID, nil
|
2015-04-03 17:03:37 +00:00
|
|
|
}
|
|
|
|
|
2015-06-29 17:00:33 +00:00
|
|
|
func (ebs *awsElasticBlockStore) GetPath() string {
|
2015-04-07 21:16:36 +00:00
|
|
|
name := awsElasticBlockStorePluginName
|
2015-06-29 17:00:33 +00:00
|
|
|
return ebs.plugin.host.GetPodVolumeDir(ebs.podUID, util.EscapeQualifiedNameForDisk(name), ebs.volName)
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
2015-07-16 14:47:01 +00:00
|
|
|
type awsElasticBlockStoreCleaner struct {
|
|
|
|
*awsElasticBlockStore
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ volume.Cleaner = &awsElasticBlockStoreCleaner{}
|
|
|
|
|
2015-03-06 14:26:39 +00:00
|
|
|
// Unmounts the bind mount, and detaches the disk only if the PD
|
|
|
|
// resource was the last reference to that disk on the kubelet.
|
2015-07-16 14:47:01 +00:00
|
|
|
func (c *awsElasticBlockStoreCleaner) TearDown() error {
|
|
|
|
return c.TearDownAt(c.GetPath())
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Unmounts the bind mount, and detaches the disk only if the PD
|
|
|
|
// resource was the last reference to that disk on the kubelet.
|
2015-07-16 14:47:01 +00:00
|
|
|
func (c *awsElasticBlockStoreCleaner) TearDownAt(dir string) error {
|
2015-04-16 23:49:53 +00:00
|
|
|
notMnt, err := c.mounter.IsLikelyNotMountPoint(dir)
|
2015-03-06 14:26:39 +00:00
|
|
|
if err != nil {
|
2015-04-03 16:34:23 +00:00
|
|
|
glog.V(2).Info("Error checking if mountpoint ", dir, ": ", err)
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
if notMnt {
|
2015-04-03 16:34:23 +00:00
|
|
|
glog.V(2).Info("Not mountpoint, deleting")
|
2015-03-06 14:26:39 +00:00
|
|
|
return os.Remove(dir)
|
|
|
|
}
|
|
|
|
|
2015-07-16 14:47:01 +00:00
|
|
|
refs, err := mount.GetMountRefs(c.mounter, dir)
|
2015-03-06 14:26:39 +00:00
|
|
|
if err != nil {
|
2015-04-03 16:34:23 +00:00
|
|
|
glog.V(2).Info("Error getting mountrefs for ", dir, ": ", err)
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-05-25 12:13:30 +00:00
|
|
|
if len(refs) == 0 {
|
|
|
|
glog.Warning("Did not find pod-mount for ", dir, " during tear-down")
|
|
|
|
}
|
2015-03-06 14:26:39 +00:00
|
|
|
// Unmount the bind-mount inside this pod
|
2015-07-16 14:47:01 +00:00
|
|
|
if err := c.mounter.Unmount(dir); err != nil {
|
2015-04-03 16:34:23 +00:00
|
|
|
glog.V(2).Info("Error unmounting dir ", dir, ": ", err)
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// If len(refs) is 1, then all bind mounts have been removed, and the
|
|
|
|
// remaining reference is the global mount. It is safe to detach.
|
|
|
|
if len(refs) == 1 {
|
2015-07-16 14:47:01 +00:00
|
|
|
// c.volumeID is not initially set for volume-cleaners, so set it here.
|
|
|
|
c.volumeID, err = getVolumeIDFromGlobalMount(c.plugin.host, refs[0])
|
2015-04-03 17:03:37 +00:00
|
|
|
if err != nil {
|
2015-04-09 13:34:16 +00:00
|
|
|
glog.V(2).Info("Could not determine volumeID from mountpoint ", refs[0], ": ", err)
|
2015-04-03 17:03:37 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-07-16 14:47:01 +00:00
|
|
|
if err := c.manager.DetachDisk(&awsElasticBlockStoreCleaner{c.awsElasticBlockStore}); err != nil {
|
|
|
|
glog.V(2).Info("Error detaching disk ", c.volumeID, ": ", err)
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-05-25 12:13:30 +00:00
|
|
|
} else {
|
|
|
|
glog.V(2).Infof("Found multiple refs; won't detach EBS volume: %v", refs)
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
notMnt, mntErr := c.mounter.IsLikelyNotMountPoint(dir)
|
2015-03-06 14:26:39 +00:00
|
|
|
if mntErr != nil {
|
2015-04-16 23:49:53 +00:00
|
|
|
glog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
if notMnt {
|
2015-03-06 14:26:39 +00:00
|
|
|
if err := os.Remove(dir); err != nil {
|
2015-04-03 16:34:23 +00:00
|
|
|
glog.V(2).Info("Error removing mountpoint ", dir, ": ", err)
|
2015-03-06 14:26:39 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|