2014-11-23 15:47:25 +00:00
|
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
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 gce_pd
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
"os"
|
|
|
|
|
"path"
|
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
|
|
"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-02-06 18:09:00 +00:00
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/exec"
|
2014-11-23 15:47:25 +00:00
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/mount"
|
2015-03-19 05:18:31 +00:00
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume"
|
2014-11-23 15:47:25 +00:00
|
|
|
|
"github.com/golang/glog"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// This is the primary entrypoint for volume plugins.
|
2015-03-19 05:18:31 +00:00
|
|
|
|
func ProbeVolumePlugins() []volume.VolumePlugin {
|
|
|
|
|
return []volume.VolumePlugin{&gcePersistentDiskPlugin{nil, false}, &gcePersistentDiskPlugin{nil, true}}
|
2014-11-23 15:47:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type gcePersistentDiskPlugin struct {
|
2015-03-19 05:18:31 +00:00
|
|
|
|
host volume.VolumeHost
|
2014-11-23 15:47:25 +00:00
|
|
|
|
legacyMode bool // if set, plugin answers to the legacy name
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-19 05:18:31 +00:00
|
|
|
|
var _ volume.VolumePlugin = &gcePersistentDiskPlugin{}
|
2014-11-23 15:47:25 +00:00
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
gcePersistentDiskPluginName = "kubernetes.io/gce-pd"
|
|
|
|
|
gcePersistentDiskPluginLegacyName = "gce-pd"
|
|
|
|
|
)
|
|
|
|
|
|
2015-03-19 05:18:31 +00:00
|
|
|
|
func (plugin *gcePersistentDiskPlugin) Init(host volume.VolumeHost) {
|
2014-11-23 15:47:25 +00:00
|
|
|
|
plugin.host = host
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (plugin *gcePersistentDiskPlugin) Name() string {
|
|
|
|
|
if plugin.legacyMode {
|
|
|
|
|
return gcePersistentDiskPluginLegacyName
|
|
|
|
|
}
|
|
|
|
|
return gcePersistentDiskPluginName
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-14 16:29:33 +00:00
|
|
|
|
func (plugin *gcePersistentDiskPlugin) CanSupport(spec *volume.Spec) bool {
|
2014-11-23 15:47:25 +00:00
|
|
|
|
if plugin.legacyMode {
|
|
|
|
|
// Legacy mode instances can be cleaned up but not created anew.
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-14 16:29:33 +00:00
|
|
|
|
return spec.VolumeSource.GCEPersistentDisk != nil || spec.PersistentVolumeSource.GCEPersistentDisk != nil
|
2014-11-23 15:47:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-05-18 20:22:30 +00:00
|
|
|
|
func (plugin *gcePersistentDiskPlugin) GetAccessModes() []api.PersistentVolumeAccessMode {
|
|
|
|
|
return []api.PersistentVolumeAccessMode{
|
2015-03-12 19:37:02 +00:00
|
|
|
|
api.ReadWriteOnce,
|
|
|
|
|
api.ReadOnlyMany,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-11 00:12:57 +00:00
|
|
|
|
func (plugin *gcePersistentDiskPlugin) NewBuilder(spec *volume.Spec, pod *api.Pod, _ volume.VolumeOptions, mounter mount.Interface) (volume.Builder, error) {
|
2014-11-23 15:47:25 +00:00
|
|
|
|
// Inject real implementations here, test through the internal function.
|
2015-05-11 00:12:57 +00:00
|
|
|
|
return plugin.newBuilderInternal(spec, pod.UID, &GCEDiskUtil{}, mounter)
|
2014-11-23 15:47:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-14 16:29:33 +00:00
|
|
|
|
func (plugin *gcePersistentDiskPlugin) newBuilderInternal(spec *volume.Spec, podUID types.UID, manager pdManager, mounter mount.Interface) (volume.Builder, error) {
|
2014-11-23 15:47:25 +00:00
|
|
|
|
if plugin.legacyMode {
|
|
|
|
|
// Legacy mode instances can be cleaned up but not created anew.
|
|
|
|
|
return nil, fmt.Errorf("legacy mode: can not create new instances")
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-14 16:29:33 +00:00
|
|
|
|
var gce *api.GCEPersistentDiskVolumeSource
|
|
|
|
|
if spec.VolumeSource.GCEPersistentDisk != nil {
|
|
|
|
|
gce = spec.VolumeSource.GCEPersistentDisk
|
|
|
|
|
} else {
|
|
|
|
|
gce = spec.PersistentVolumeSource.GCEPersistentDisk
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pdName := gce.PDName
|
|
|
|
|
fsType := gce.FSType
|
2014-11-23 15:47:25 +00:00
|
|
|
|
partition := ""
|
2015-04-14 16:29:33 +00:00
|
|
|
|
if gce.Partition != 0 {
|
|
|
|
|
partition = strconv.Itoa(gce.Partition)
|
2014-11-23 15:47:25 +00:00
|
|
|
|
}
|
2015-04-14 16:29:33 +00:00
|
|
|
|
readOnly := gce.ReadOnly
|
2014-11-23 15:47:25 +00:00
|
|
|
|
|
|
|
|
|
return &gcePersistentDisk{
|
2015-02-06 20:41:21 +00:00
|
|
|
|
podUID: podUID,
|
|
|
|
|
volName: spec.Name,
|
|
|
|
|
pdName: pdName,
|
|
|
|
|
fsType: fsType,
|
|
|
|
|
partition: partition,
|
|
|
|
|
readOnly: readOnly,
|
|
|
|
|
manager: manager,
|
|
|
|
|
mounter: mounter,
|
|
|
|
|
diskMounter: &gceSafeFormatAndMount{mounter, exec.New()},
|
|
|
|
|
plugin: plugin,
|
|
|
|
|
legacyMode: false,
|
2014-11-23 15:47:25 +00:00
|
|
|
|
}, nil
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-04 14:43:10 +00:00
|
|
|
|
func (plugin *gcePersistentDiskPlugin) NewCleaner(volName string, podUID types.UID, mounter mount.Interface) (volume.Cleaner, error) {
|
2014-11-23 15:47:25 +00:00
|
|
|
|
// Inject real implementations here, test through the internal function.
|
2015-05-04 14:43:10 +00:00
|
|
|
|
return plugin.newCleanerInternal(volName, podUID, &GCEDiskUtil{}, mounter)
|
2014-11-23 15:47:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (plugin *gcePersistentDiskPlugin) newCleanerInternal(volName string, podUID types.UID, manager pdManager, mounter mount.Interface) (volume.Cleaner, error) {
|
|
|
|
|
legacy := false
|
|
|
|
|
if plugin.legacyMode {
|
|
|
|
|
legacy = true
|
|
|
|
|
}
|
|
|
|
|
return &gcePersistentDisk{
|
2015-02-06 20:41:21 +00:00
|
|
|
|
podUID: podUID,
|
|
|
|
|
volName: volName,
|
|
|
|
|
manager: manager,
|
|
|
|
|
mounter: mounter,
|
|
|
|
|
diskMounter: &gceSafeFormatAndMount{mounter, exec.New()},
|
|
|
|
|
plugin: plugin,
|
|
|
|
|
legacyMode: legacy,
|
2014-11-23 15:47:25 +00:00
|
|
|
|
}, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Abstract interface to PD operations.
|
|
|
|
|
type pdManager interface {
|
|
|
|
|
// Attaches the disk to the kubelet's host machine.
|
2015-02-20 18:01:33 +00:00
|
|
|
|
AttachAndMountDisk(pd *gcePersistentDisk, globalPDPath string) error
|
2014-11-23 15:47:25 +00:00
|
|
|
|
// Detaches the disk from the kubelet's host machine.
|
2015-02-20 18:01:33 +00:00
|
|
|
|
DetachDisk(pd *gcePersistentDisk) error
|
2014-11-23 15:47:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// gcePersistentDisk volumes are disk resources provided by Google Compute Engine
|
|
|
|
|
// that are attached to the kubelet's host machine and exposed to the pod.
|
|
|
|
|
type gcePersistentDisk struct {
|
|
|
|
|
volName string
|
|
|
|
|
podUID types.UID
|
|
|
|
|
// Unique identifier of the PD, used to find the disk resource in the provider.
|
|
|
|
|
pdName string
|
|
|
|
|
// Filesystem type, optional.
|
|
|
|
|
fsType string
|
|
|
|
|
// Specifies the partition to mount
|
|
|
|
|
partition string
|
|
|
|
|
// Specifies whether the disk will be attached as read-only.
|
|
|
|
|
readOnly bool
|
|
|
|
|
// Utility interface that provides API calls to the provider to attach/detach disks.
|
|
|
|
|
manager pdManager
|
2015-02-06 20:41:21 +00:00
|
|
|
|
// Mounter interface that provides system calls to mount the global path to the pod local path.
|
|
|
|
|
mounter mount.Interface
|
|
|
|
|
// diskMounter provides the interface that is used to mount the actual block device.
|
|
|
|
|
diskMounter mount.Interface
|
|
|
|
|
plugin *gcePersistentDiskPlugin
|
|
|
|
|
legacyMode bool
|
2014-11-23 15:47:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-27 21:09:36 +00:00
|
|
|
|
func detachDiskLogError(pd *gcePersistentDisk) {
|
2015-02-20 18:01:33 +00:00
|
|
|
|
err := pd.manager.DetachDisk(pd)
|
2015-01-27 21:09:36 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
glog.Warningf("Failed to detach disk: %v (%v)", pd, err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-23 15:47:25 +00:00
|
|
|
|
// SetUp attaches the disk and bind mounts to the volume path.
|
|
|
|
|
func (pd *gcePersistentDisk) SetUp() error {
|
2015-03-07 21:38:50 +00:00
|
|
|
|
return pd.SetUpAt(pd.GetPath())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetUpAt attaches the disk and bind mounts to the volume path.
|
|
|
|
|
func (pd *gcePersistentDisk) SetUpAt(dir string) error {
|
2014-11-23 15:47:25 +00:00
|
|
|
|
if pd.legacyMode {
|
|
|
|
|
return fmt.Errorf("legacy mode: can not create new instances")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: handle failed mounts here.
|
2015-04-01 02:08:33 +00:00
|
|
|
|
mountpoint, err := pd.mounter.IsMountPoint(dir)
|
2015-03-07 21:38:50 +00:00
|
|
|
|
glog.V(4).Infof("PersistentDisk set up: %s %v %v", dir, mountpoint, err)
|
2014-11-23 15:47:25 +00:00
|
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
if mountpoint {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-20 18:01:33 +00:00
|
|
|
|
globalPDPath := makeGlobalPDName(pd.plugin.host, pd.pdName)
|
|
|
|
|
if err := pd.manager.AttachAndMountDisk(pd, globalPDPath); err != nil {
|
2014-11-23 15:47:25 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-07 21:38:50 +00:00
|
|
|
|
if err := os.MkdirAll(dir, 0750); err != nil {
|
2015-01-27 21:09:36 +00:00
|
|
|
|
// TODO: we should really eject the attach/detach out into its own control loop.
|
|
|
|
|
detachDiskLogError(pd)
|
2014-11-23 15:47:25 +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"}
|
|
|
|
|
if pd.readOnly {
|
|
|
|
|
options = append(options, "ro")
|
|
|
|
|
}
|
|
|
|
|
err = pd.mounter.Mount(globalPDPath, dir, "", options)
|
2014-11-23 15:47:25 +00:00
|
|
|
|
if err != nil {
|
2015-04-01 02:08:33 +00:00
|
|
|
|
mountpoint, mntErr := pd.mounter.IsMountPoint(dir)
|
2015-01-30 02:10:13 +00:00
|
|
|
|
if mntErr != nil {
|
|
|
|
|
glog.Errorf("isMountpoint check failed: %v", mntErr)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
if mountpoint {
|
2015-04-03 01:08:04 +00:00
|
|
|
|
if mntErr = pd.mounter.Unmount(dir); mntErr != nil {
|
2015-01-30 02:10:13 +00:00
|
|
|
|
glog.Errorf("Failed to unmount: %v", mntErr)
|
|
|
|
|
return err
|
|
|
|
|
}
|
2015-04-01 02:08:33 +00:00
|
|
|
|
mountpoint, mntErr := pd.mounter.IsMountPoint(dir)
|
2015-01-30 02:10:13 +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.
|
2015-03-07 21:38:50 +00:00
|
|
|
|
glog.Errorf("%s is still mounted, despite call to unmount(). Will try again next sync loop.", dir)
|
2015-01-30 02:10:13 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-07 21:38:50 +00:00
|
|
|
|
os.Remove(dir)
|
2015-01-27 21:09:36 +00:00
|
|
|
|
// TODO: we should really eject the attach/detach out into its own control loop.
|
|
|
|
|
detachDiskLogError(pd)
|
2014-11-23 15:47:25 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-19 05:18:31 +00:00
|
|
|
|
func makeGlobalPDName(host volume.VolumeHost, devName string) string {
|
2014-11-23 15:47:25 +00:00
|
|
|
|
return path.Join(host.GetPluginDir(gcePersistentDiskPluginName), "mounts", devName)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (pd *gcePersistentDisk) GetPath() string {
|
|
|
|
|
name := gcePersistentDiskPluginName
|
|
|
|
|
if pd.legacyMode {
|
|
|
|
|
name = gcePersistentDiskPluginLegacyName
|
|
|
|
|
}
|
2015-03-24 14:39:51 +00:00
|
|
|
|
return pd.plugin.host.GetPodVolumeDir(pd.podUID, util.EscapeQualifiedNameForDisk(name), pd.volName)
|
2014-11-23 15:47:25 +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.
|
|
|
|
|
func (pd *gcePersistentDisk) TearDown() error {
|
2015-03-07 21:38:50 +00:00
|
|
|
|
return pd.TearDownAt(pd.GetPath())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Unmounts the bind mount, and detaches the disk only if the PD
|
|
|
|
|
// resource was the last reference to that disk on the kubelet.
|
|
|
|
|
func (pd *gcePersistentDisk) TearDownAt(dir string) error {
|
2015-04-01 02:08:33 +00:00
|
|
|
|
mountpoint, err := pd.mounter.IsMountPoint(dir)
|
2014-11-23 15:47:25 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
if !mountpoint {
|
2015-03-07 21:38:50 +00:00
|
|
|
|
return os.Remove(dir)
|
2014-11-23 15:47:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-07 21:38:50 +00:00
|
|
|
|
refs, err := mount.GetMountRefs(pd.mounter, dir)
|
2014-11-23 15:47:25 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
2015-02-20 18:01:33 +00:00
|
|
|
|
// Unmount the bind-mount inside this pod
|
2015-04-03 01:08:04 +00:00
|
|
|
|
if err := pd.mounter.Unmount(dir); err != nil {
|
2014-11-23 15:47:25 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
2015-02-20 18:01:33 +00:00
|
|
|
|
// If len(refs) is 1, then all bind mounts have been removed, and the
|
2014-11-23 15:47:25 +00:00
|
|
|
|
// remaining reference is the global mount. It is safe to detach.
|
2015-02-20 18:01:33 +00:00
|
|
|
|
if len(refs) == 1 {
|
|
|
|
|
// pd.pdName is not initially set for volume-cleaners, so set it here.
|
|
|
|
|
pd.pdName = path.Base(refs[0])
|
|
|
|
|
if err := pd.manager.DetachDisk(pd); err != nil {
|
2014-11-23 15:47:25 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-04-01 02:08:33 +00:00
|
|
|
|
mountpoint, mntErr := pd.mounter.IsMountPoint(dir)
|
2015-01-30 02:10:13 +00:00
|
|
|
|
if mntErr != nil {
|
|
|
|
|
glog.Errorf("isMountpoint check failed: %v", mntErr)
|
2015-01-30 00:13:12 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
2015-01-30 02:10:13 +00:00
|
|
|
|
if !mountpoint {
|
2015-03-07 21:38:50 +00:00
|
|
|
|
if err := os.Remove(dir); err != nil {
|
2015-01-30 02:10:13 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-11-23 15:47:25 +00:00
|
|
|
|
return nil
|
|
|
|
|
}
|