123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410 |
- /*
- Copyright 2016 The Kubernetes Authors.
- 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 photon_pd
- import (
- "fmt"
- "os"
- "path/filepath"
- "k8s.io/api/core/v1"
- "k8s.io/apimachinery/pkg/api/resource"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/types"
- "k8s.io/klog"
- "k8s.io/kubernetes/pkg/util/mount"
- "k8s.io/kubernetes/pkg/volume"
- "k8s.io/kubernetes/pkg/volume/util"
- utilstrings "k8s.io/utils/strings"
- )
- // This is the primary entrypoint for volume plugins.
- func ProbeVolumePlugins() []volume.VolumePlugin {
- return []volume.VolumePlugin{&photonPersistentDiskPlugin{}}
- }
- type photonPersistentDiskPlugin struct {
- host volume.VolumeHost
- }
- var _ volume.VolumePlugin = &photonPersistentDiskPlugin{}
- var _ volume.PersistentVolumePlugin = &photonPersistentDiskPlugin{}
- var _ volume.DeletableVolumePlugin = &photonPersistentDiskPlugin{}
- var _ volume.ProvisionableVolumePlugin = &photonPersistentDiskPlugin{}
- const (
- photonPersistentDiskPluginName = "kubernetes.io/photon-pd"
- )
- func (plugin *photonPersistentDiskPlugin) Init(host volume.VolumeHost) error {
- plugin.host = host
- return nil
- }
- func (plugin *photonPersistentDiskPlugin) GetPluginName() string {
- return photonPersistentDiskPluginName
- }
- func (plugin *photonPersistentDiskPlugin) GetVolumeName(spec *volume.Spec) (string, error) {
- volumeSource, _, err := getVolumeSource(spec)
- if err != nil {
- klog.Errorf("Photon volume plugin: GetVolumeName failed to get volume source")
- return "", err
- }
- return volumeSource.PdID, nil
- }
- func (plugin *photonPersistentDiskPlugin) CanSupport(spec *volume.Spec) bool {
- return (spec.PersistentVolume != nil && spec.PersistentVolume.Spec.PhotonPersistentDisk != nil) ||
- (spec.Volume != nil && spec.Volume.PhotonPersistentDisk != nil)
- }
- func (plugin *photonPersistentDiskPlugin) IsMigratedToCSI() bool {
- return false
- }
- func (plugin *photonPersistentDiskPlugin) RequiresRemount() bool {
- return false
- }
- func (plugin *photonPersistentDiskPlugin) SupportsMountOption() bool {
- return true
- }
- func (plugin *photonPersistentDiskPlugin) SupportsBulkVolumeVerification() bool {
- return false
- }
- func (plugin *photonPersistentDiskPlugin) NewMounter(spec *volume.Spec, pod *v1.Pod, _ volume.VolumeOptions) (volume.Mounter, error) {
- return plugin.newMounterInternal(spec, pod.UID, &PhotonDiskUtil{}, plugin.host.GetMounter(plugin.GetPluginName()))
- }
- func (plugin *photonPersistentDiskPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
- return plugin.newUnmounterInternal(volName, podUID, &PhotonDiskUtil{}, plugin.host.GetMounter(plugin.GetPluginName()))
- }
- func (plugin *photonPersistentDiskPlugin) newMounterInternal(spec *volume.Spec, podUID types.UID, manager pdManager, mounter mount.Interface) (volume.Mounter, error) {
- vvol, _, err := getVolumeSource(spec)
- if err != nil {
- klog.Errorf("Photon volume plugin: newMounterInternal failed to get volume source")
- return nil, err
- }
- pdID := vvol.PdID
- fsType := vvol.FSType
- return &photonPersistentDiskMounter{
- photonPersistentDisk: &photonPersistentDisk{
- podUID: podUID,
- volName: spec.Name(),
- pdID: pdID,
- manager: manager,
- mounter: mounter,
- plugin: plugin,
- },
- fsType: fsType,
- diskMounter: util.NewSafeFormatAndMountFromHost(plugin.GetPluginName(), plugin.host),
- mountOption: util.MountOptionFromSpec(spec),
- }, nil
- }
- func (plugin *photonPersistentDiskPlugin) newUnmounterInternal(volName string, podUID types.UID, manager pdManager, mounter mount.Interface) (volume.Unmounter, error) {
- return &photonPersistentDiskUnmounter{
- &photonPersistentDisk{
- podUID: podUID,
- volName: volName,
- manager: manager,
- mounter: mounter,
- plugin: plugin,
- }}, nil
- }
- func (plugin *photonPersistentDiskPlugin) ConstructVolumeSpec(volumeSpecName, mountPath string) (*volume.Spec, error) {
- mounter := plugin.host.GetMounter(plugin.GetPluginName())
- pluginMntDir := util.GetPluginMountDir(plugin.host, plugin.GetPluginName())
- pdID, err := mounter.GetDeviceNameFromMount(mountPath, pluginMntDir)
- if err != nil {
- return nil, err
- }
- photonPersistentDisk := &v1.Volume{
- Name: volumeSpecName,
- VolumeSource: v1.VolumeSource{
- PhotonPersistentDisk: &v1.PhotonPersistentDiskVolumeSource{
- PdID: pdID,
- },
- },
- }
- return volume.NewSpecFromVolume(photonPersistentDisk), nil
- }
- // Abstract interface to disk operations.
- type pdManager interface {
- // Creates a volume
- CreateVolume(provisioner *photonPersistentDiskProvisioner) (pdID string, volumeSizeGB int, fstype string, err error)
- // Deletes a volume
- DeleteVolume(deleter *photonPersistentDiskDeleter) error
- }
- // photonPersistentDisk volumes are disk resources are attached to the kubelet's host machine and exposed to the pod.
- type photonPersistentDisk struct {
- volName string
- podUID types.UID
- // Unique identifier of the volume, used to find the disk resource in the provider.
- pdID string
- // Filesystem type, optional.
- fsType string
- // Utility interface that provides API calls to the provider to attach/detach disks.
- manager pdManager
- // Mounter interface that provides system calls to mount the global path to the pod local path.
- mounter mount.Interface
- plugin *photonPersistentDiskPlugin
- volume.MetricsNil
- }
- var _ volume.Mounter = &photonPersistentDiskMounter{}
- type photonPersistentDiskMounter struct {
- *photonPersistentDisk
- fsType string
- diskMounter *mount.SafeFormatAndMount
- mountOption []string
- }
- func (b *photonPersistentDiskMounter) GetAttributes() volume.Attributes {
- return volume.Attributes{
- SupportsSELinux: true,
- }
- }
- // 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 *photonPersistentDiskMounter) CanMount() error {
- return nil
- }
- // SetUp attaches the disk and bind mounts to the volume path.
- func (b *photonPersistentDiskMounter) SetUp(mounterArgs volume.MounterArgs) error {
- return b.SetUpAt(b.GetPath(), mounterArgs)
- }
- // SetUp attaches the disk and bind mounts to the volume path.
- func (b *photonPersistentDiskMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
- klog.V(4).Infof("Photon Persistent Disk setup %s to %s", b.pdID, dir)
- // TODO: handle failed mounts here.
- notmnt, err := b.mounter.IsLikelyNotMountPoint(dir)
- if err != nil && !os.IsNotExist(err) {
- klog.Errorf("cannot validate mount point: %s %v", dir, err)
- return err
- }
- if !notmnt {
- return nil
- }
- if err := os.MkdirAll(dir, 0750); err != nil {
- klog.Errorf("mkdir failed on disk %s (%v)", dir, err)
- return err
- }
- options := []string{"bind"}
- // Perform a bind mount to the full path to allow duplicate mounts of the same PD.
- globalPDPath := makeGlobalPDPath(b.plugin.host, b.pdID)
- klog.V(4).Infof("attempting to mount %s", dir)
- mountOptions := util.JoinMountOptions(options, b.mountOption)
- err = b.mounter.Mount(globalPDPath, dir, "", mountOptions)
- if err != nil {
- notmnt, mntErr := b.mounter.IsLikelyNotMountPoint(dir)
- if mntErr != nil {
- klog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
- return err
- }
- if !notmnt {
- if mntErr = b.mounter.Unmount(dir); mntErr != nil {
- klog.Errorf("Failed to unmount: %v", mntErr)
- return err
- }
- notmnt, mntErr := b.mounter.IsLikelyNotMountPoint(dir)
- if mntErr != nil {
- klog.Errorf("IsLikelyNotMountPoint check failed: %v", mntErr)
- return err
- }
- if !notmnt {
- klog.Errorf("%s is still mounted, despite call to unmount(). Will try again next sync loop.", b.GetPath())
- return err
- }
- }
- os.Remove(dir)
- klog.Errorf("Mount of disk %s failed: %v", dir, err)
- return err
- }
- return nil
- }
- var _ volume.Unmounter = &photonPersistentDiskUnmounter{}
- type photonPersistentDiskUnmounter struct {
- *photonPersistentDisk
- }
- // Unmounts the bind mount, and detaches the disk only if the PD
- // resource was the last reference to that disk on the kubelet.
- func (c *photonPersistentDiskUnmounter) TearDown() error {
- err := c.TearDownAt(c.GetPath())
- if err != nil {
- return err
- }
- removeFromScsiSubsystem(c.volName)
- return nil
- }
- // Unmounts the bind mount, and detaches the disk only if the PD
- // resource was the last reference to that disk on the kubelet.
- func (c *photonPersistentDiskUnmounter) TearDownAt(dir string) error {
- return mount.CleanupMountPoint(dir, c.mounter, false)
- }
- func makeGlobalPDPath(host volume.VolumeHost, devName string) string {
- return filepath.Join(host.GetPluginDir(photonPersistentDiskPluginName), util.MountsInGlobalPDPath, devName)
- }
- func (ppd *photonPersistentDisk) GetPath() string {
- name := photonPersistentDiskPluginName
- return ppd.plugin.host.GetPodVolumeDir(ppd.podUID, utilstrings.EscapeQualifiedName(name), ppd.volName)
- }
- // TODO: supporting more access mode for PhotonController persistent disk
- func (plugin *photonPersistentDiskPlugin) GetAccessModes() []v1.PersistentVolumeAccessMode {
- return []v1.PersistentVolumeAccessMode{
- v1.ReadWriteOnce,
- }
- }
- type photonPersistentDiskDeleter struct {
- *photonPersistentDisk
- }
- var _ volume.Deleter = &photonPersistentDiskDeleter{}
- func (plugin *photonPersistentDiskPlugin) NewDeleter(spec *volume.Spec) (volume.Deleter, error) {
- return plugin.newDeleterInternal(spec, &PhotonDiskUtil{})
- }
- func (plugin *photonPersistentDiskPlugin) newDeleterInternal(spec *volume.Spec, manager pdManager) (volume.Deleter, error) {
- if spec.PersistentVolume != nil && spec.PersistentVolume.Spec.PhotonPersistentDisk == nil {
- return nil, fmt.Errorf("spec.PersistentVolumeSource.PhotonPersistentDisk is nil")
- }
- return &photonPersistentDiskDeleter{
- &photonPersistentDisk{
- volName: spec.Name(),
- pdID: spec.PersistentVolume.Spec.PhotonPersistentDisk.PdID,
- manager: manager,
- plugin: plugin,
- }}, nil
- }
- func (r *photonPersistentDiskDeleter) Delete() error {
- return r.manager.DeleteVolume(r)
- }
- type photonPersistentDiskProvisioner struct {
- *photonPersistentDisk
- options volume.VolumeOptions
- }
- var _ volume.Provisioner = &photonPersistentDiskProvisioner{}
- func (plugin *photonPersistentDiskPlugin) NewProvisioner(options volume.VolumeOptions) (volume.Provisioner, error) {
- return plugin.newProvisionerInternal(options, &PhotonDiskUtil{})
- }
- func (plugin *photonPersistentDiskPlugin) newProvisionerInternal(options volume.VolumeOptions, manager pdManager) (volume.Provisioner, error) {
- return &photonPersistentDiskProvisioner{
- photonPersistentDisk: &photonPersistentDisk{
- manager: manager,
- plugin: plugin,
- },
- options: options,
- }, nil
- }
- func (p *photonPersistentDiskProvisioner) Provision(selectedNode *v1.Node, allowedTopologies []v1.TopologySelectorTerm) (*v1.PersistentVolume, error) {
- if !util.AccessModesContainedInAll(p.plugin.GetAccessModes(), p.options.PVC.Spec.AccessModes) {
- return nil, fmt.Errorf("invalid AccessModes %v: only AccessModes %v are supported", p.options.PVC.Spec.AccessModes, p.plugin.GetAccessModes())
- }
- if util.CheckPersistentVolumeClaimModeBlock(p.options.PVC) {
- return nil, fmt.Errorf("%s does not support block volume provisioning", p.plugin.GetPluginName())
- }
- pdID, sizeGB, fstype, err := p.manager.CreateVolume(p)
- if err != nil {
- return nil, err
- }
- if fstype == "" {
- fstype = "ext4"
- }
- pv := &v1.PersistentVolume{
- ObjectMeta: metav1.ObjectMeta{
- Name: p.options.PVName,
- Labels: map[string]string{},
- Annotations: map[string]string{
- util.VolumeDynamicallyCreatedByKey: "photon-volume-dynamic-provisioner",
- },
- },
- Spec: v1.PersistentVolumeSpec{
- PersistentVolumeReclaimPolicy: p.options.PersistentVolumeReclaimPolicy,
- AccessModes: p.options.PVC.Spec.AccessModes,
- Capacity: v1.ResourceList{
- v1.ResourceName(v1.ResourceStorage): resource.MustParse(fmt.Sprintf("%dGi", sizeGB)),
- },
- PersistentVolumeSource: v1.PersistentVolumeSource{
- PhotonPersistentDisk: &v1.PhotonPersistentDiskVolumeSource{
- PdID: pdID,
- FSType: fstype,
- },
- },
- MountOptions: p.options.MountOptions,
- },
- }
- if len(p.options.PVC.Spec.AccessModes) == 0 {
- pv.Spec.AccessModes = p.plugin.GetAccessModes()
- }
- return pv, nil
- }
- func getVolumeSource(
- spec *volume.Spec) (*v1.PhotonPersistentDiskVolumeSource, bool, error) {
- if spec.Volume != nil && spec.Volume.PhotonPersistentDisk != nil {
- return spec.Volume.PhotonPersistentDisk, spec.ReadOnly, nil
- } else if spec.PersistentVolume != nil &&
- spec.PersistentVolume.Spec.PhotonPersistentDisk != nil {
- return spec.PersistentVolume.Spec.PhotonPersistentDisk, spec.ReadOnly, nil
- }
- return nil, false, fmt.Errorf("Spec does not reference a Photon Controller persistent disk type")
- }
|