301 lines
10 KiB
Go
301 lines
10 KiB
Go
/*
|
|
Copyright 2019 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 nodevolumelimits
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
v1 "k8s.io/api/core/v1"
|
|
storagev1 "k8s.io/api/storage/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/util/rand"
|
|
corelisters "k8s.io/client-go/listers/core/v1"
|
|
storagelisters "k8s.io/client-go/listers/storage/v1"
|
|
csitrans "k8s.io/csi-translation-lib"
|
|
v1helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
|
|
"k8s.io/kubernetes/pkg/scheduler/framework"
|
|
volumeutil "k8s.io/kubernetes/pkg/volume/util"
|
|
|
|
"k8s.io/klog/v2"
|
|
)
|
|
|
|
// InTreeToCSITranslator contains methods required to check migratable status
|
|
// and perform translations from InTree PV's to CSI
|
|
type InTreeToCSITranslator interface {
|
|
IsPVMigratable(pv *v1.PersistentVolume) bool
|
|
IsMigratableIntreePluginByName(inTreePluginName string) bool
|
|
GetInTreePluginNameFromSpec(pv *v1.PersistentVolume, vol *v1.Volume) (string, error)
|
|
GetCSINameFromInTreeName(pluginName string) (string, error)
|
|
TranslateInTreePVToCSI(pv *v1.PersistentVolume) (*v1.PersistentVolume, error)
|
|
}
|
|
|
|
// CSILimits is a plugin that checks node volume limits.
|
|
type CSILimits struct {
|
|
csiNodeLister storagelisters.CSINodeLister
|
|
pvLister corelisters.PersistentVolumeLister
|
|
pvcLister corelisters.PersistentVolumeClaimLister
|
|
scLister storagelisters.StorageClassLister
|
|
|
|
randomVolumeIDPrefix string
|
|
|
|
translator InTreeToCSITranslator
|
|
}
|
|
|
|
var _ framework.FilterPlugin = &CSILimits{}
|
|
|
|
// CSIName is the name of the plugin used in the plugin registry and configurations.
|
|
const CSIName = "NodeVolumeLimits"
|
|
|
|
// Name returns name of the plugin. It is used in logs, etc.
|
|
func (pl *CSILimits) Name() string {
|
|
return CSIName
|
|
}
|
|
|
|
// Filter invoked at the filter extension point.
|
|
func (pl *CSILimits) Filter(ctx context.Context, _ *framework.CycleState, pod *v1.Pod, nodeInfo *framework.NodeInfo) *framework.Status {
|
|
// If the new pod doesn't have any volume attached to it, the predicate will always be true
|
|
if len(pod.Spec.Volumes) == 0 {
|
|
return nil
|
|
}
|
|
|
|
node := nodeInfo.Node()
|
|
if node == nil {
|
|
return framework.NewStatus(framework.Error, fmt.Sprintf("node not found"))
|
|
}
|
|
|
|
// If CSINode doesn't exist, the predicate may read the limits from Node object
|
|
csiNode, err := pl.csiNodeLister.Get(node.Name)
|
|
if err != nil {
|
|
// TODO: return the error once CSINode is created by default (2 releases)
|
|
klog.V(5).Infof("Could not get a CSINode object for the node: %v", err)
|
|
}
|
|
|
|
newVolumes := make(map[string]string)
|
|
if err := pl.filterAttachableVolumes(csiNode, pod.Spec.Volumes, pod.Namespace, newVolumes); err != nil {
|
|
return framework.NewStatus(framework.Error, err.Error())
|
|
}
|
|
|
|
// If the pod doesn't have any new CSI volumes, the predicate will always be true
|
|
if len(newVolumes) == 0 {
|
|
return nil
|
|
}
|
|
|
|
// If the node doesn't have volume limits, the predicate will always be true
|
|
nodeVolumeLimits := getVolumeLimits(nodeInfo, csiNode)
|
|
if len(nodeVolumeLimits) == 0 {
|
|
return nil
|
|
}
|
|
|
|
attachedVolumes := make(map[string]string)
|
|
for _, existingPod := range nodeInfo.Pods {
|
|
if err := pl.filterAttachableVolumes(csiNode, existingPod.Pod.Spec.Volumes, existingPod.Pod.Namespace, attachedVolumes); err != nil {
|
|
return framework.NewStatus(framework.Error, err.Error())
|
|
}
|
|
}
|
|
|
|
attachedVolumeCount := map[string]int{}
|
|
for volumeUniqueName, volumeLimitKey := range attachedVolumes {
|
|
// Don't count single volume used in multiple pods more than once
|
|
delete(newVolumes, volumeUniqueName)
|
|
attachedVolumeCount[volumeLimitKey]++
|
|
}
|
|
|
|
newVolumeCount := map[string]int{}
|
|
for _, volumeLimitKey := range newVolumes {
|
|
newVolumeCount[volumeLimitKey]++
|
|
}
|
|
|
|
for volumeLimitKey, count := range newVolumeCount {
|
|
maxVolumeLimit, ok := nodeVolumeLimits[v1.ResourceName(volumeLimitKey)]
|
|
if ok {
|
|
currentVolumeCount := attachedVolumeCount[volumeLimitKey]
|
|
if currentVolumeCount+count > int(maxVolumeLimit) {
|
|
return framework.NewStatus(framework.Unschedulable, ErrReasonMaxVolumeCountExceeded)
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (pl *CSILimits) filterAttachableVolumes(
|
|
csiNode *storagev1.CSINode, volumes []v1.Volume, namespace string, result map[string]string) error {
|
|
for _, vol := range volumes {
|
|
// CSI volumes can only be used as persistent volumes
|
|
if vol.PersistentVolumeClaim == nil {
|
|
continue
|
|
}
|
|
pvcName := vol.PersistentVolumeClaim.ClaimName
|
|
|
|
if pvcName == "" {
|
|
return fmt.Errorf("PersistentVolumeClaim had no name")
|
|
}
|
|
|
|
pvc, err := pl.pvcLister.PersistentVolumeClaims(namespace).Get(pvcName)
|
|
|
|
if err != nil {
|
|
klog.V(5).Infof("Unable to look up PVC info for %s/%s", namespace, pvcName)
|
|
continue
|
|
}
|
|
|
|
driverName, volumeHandle := pl.getCSIDriverInfo(csiNode, pvc)
|
|
if driverName == "" || volumeHandle == "" {
|
|
klog.V(5).Infof("Could not find a CSI driver name or volume handle, not counting volume")
|
|
continue
|
|
}
|
|
|
|
volumeUniqueName := fmt.Sprintf("%s/%s", driverName, volumeHandle)
|
|
volumeLimitKey := volumeutil.GetCSIAttachLimitKey(driverName)
|
|
result[volumeUniqueName] = volumeLimitKey
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// getCSIDriverInfo returns the CSI driver name and volume ID of a given PVC.
|
|
// If the PVC is from a migrated in-tree plugin, this function will return
|
|
// the information of the CSI driver that the plugin has been migrated to.
|
|
func (pl *CSILimits) getCSIDriverInfo(csiNode *storagev1.CSINode, pvc *v1.PersistentVolumeClaim) (string, string) {
|
|
pvName := pvc.Spec.VolumeName
|
|
namespace := pvc.Namespace
|
|
pvcName := pvc.Name
|
|
|
|
if pvName == "" {
|
|
klog.V(5).Infof("Persistent volume had no name for claim %s/%s", namespace, pvcName)
|
|
return pl.getCSIDriverInfoFromSC(csiNode, pvc)
|
|
}
|
|
|
|
pv, err := pl.pvLister.Get(pvName)
|
|
if err != nil {
|
|
klog.V(5).Infof("Unable to look up PV info for PVC %s/%s and PV %s", namespace, pvcName, pvName)
|
|
// If we can't fetch PV associated with PVC, may be it got deleted
|
|
// or PVC was prebound to a PVC that hasn't been created yet.
|
|
// fallback to using StorageClass for volume counting
|
|
return pl.getCSIDriverInfoFromSC(csiNode, pvc)
|
|
}
|
|
|
|
csiSource := pv.Spec.PersistentVolumeSource.CSI
|
|
if csiSource == nil {
|
|
// We make a fast path for non-CSI volumes that aren't migratable
|
|
if !pl.translator.IsPVMigratable(pv) {
|
|
return "", ""
|
|
}
|
|
|
|
pluginName, err := pl.translator.GetInTreePluginNameFromSpec(pv, nil)
|
|
if err != nil {
|
|
klog.V(5).Infof("Unable to look up plugin name from PV spec: %v", err)
|
|
return "", ""
|
|
}
|
|
|
|
if !isCSIMigrationOn(csiNode, pluginName) {
|
|
klog.V(5).Infof("CSI Migration of plugin %s is not enabled", pluginName)
|
|
return "", ""
|
|
}
|
|
|
|
csiPV, err := pl.translator.TranslateInTreePVToCSI(pv)
|
|
if err != nil {
|
|
klog.V(5).Infof("Unable to translate in-tree volume to CSI: %v", err)
|
|
return "", ""
|
|
}
|
|
|
|
if csiPV.Spec.PersistentVolumeSource.CSI == nil {
|
|
klog.V(5).Infof("Unable to get a valid volume source for translated PV %s", pvName)
|
|
return "", ""
|
|
}
|
|
|
|
csiSource = csiPV.Spec.PersistentVolumeSource.CSI
|
|
}
|
|
|
|
return csiSource.Driver, csiSource.VolumeHandle
|
|
}
|
|
|
|
// getCSIDriverInfoFromSC returns the CSI driver name and a random volume ID of a given PVC's StorageClass.
|
|
func (pl *CSILimits) getCSIDriverInfoFromSC(csiNode *storagev1.CSINode, pvc *v1.PersistentVolumeClaim) (string, string) {
|
|
namespace := pvc.Namespace
|
|
pvcName := pvc.Name
|
|
scName := v1helper.GetPersistentVolumeClaimClass(pvc)
|
|
|
|
// If StorageClass is not set or not found, then PVC must be using immediate binding mode
|
|
// and hence it must be bound before scheduling. So it is safe to not count it.
|
|
if scName == "" {
|
|
klog.V(5).Infof("PVC %s/%s has no StorageClass", namespace, pvcName)
|
|
return "", ""
|
|
}
|
|
|
|
storageClass, err := pl.scLister.Get(scName)
|
|
if err != nil {
|
|
klog.V(5).Infof("Could not get StorageClass for PVC %s/%s: %v", namespace, pvcName, err)
|
|
return "", ""
|
|
}
|
|
|
|
// We use random prefix to avoid conflict with volume IDs. If PVC is bound during the execution of the
|
|
// predicate and there is another pod on the same node that uses same volume, then we will overcount
|
|
// the volume and consider both volumes as different.
|
|
volumeHandle := fmt.Sprintf("%s-%s/%s", pl.randomVolumeIDPrefix, namespace, pvcName)
|
|
|
|
provisioner := storageClass.Provisioner
|
|
if pl.translator.IsMigratableIntreePluginByName(provisioner) {
|
|
if !isCSIMigrationOn(csiNode, provisioner) {
|
|
klog.V(5).Infof("CSI Migration of plugin %s is not enabled", provisioner)
|
|
return "", ""
|
|
}
|
|
|
|
driverName, err := pl.translator.GetCSINameFromInTreeName(provisioner)
|
|
if err != nil {
|
|
klog.V(5).Infof("Unable to look up driver name from plugin name: %v", err)
|
|
return "", ""
|
|
}
|
|
return driverName, volumeHandle
|
|
}
|
|
|
|
return provisioner, volumeHandle
|
|
}
|
|
|
|
// NewCSI initializes a new plugin and returns it.
|
|
func NewCSI(_ runtime.Object, handle framework.Handle) (framework.Plugin, error) {
|
|
informerFactory := handle.SharedInformerFactory()
|
|
pvLister := informerFactory.Core().V1().PersistentVolumes().Lister()
|
|
pvcLister := informerFactory.Core().V1().PersistentVolumeClaims().Lister()
|
|
csiNodesLister := informerFactory.Storage().V1().CSINodes().Lister()
|
|
scLister := informerFactory.Storage().V1().StorageClasses().Lister()
|
|
|
|
return &CSILimits{
|
|
csiNodeLister: csiNodesLister,
|
|
pvLister: pvLister,
|
|
pvcLister: pvcLister,
|
|
scLister: scLister,
|
|
randomVolumeIDPrefix: rand.String(32),
|
|
translator: csitrans.New(),
|
|
}, nil
|
|
}
|
|
|
|
func getVolumeLimits(nodeInfo *framework.NodeInfo, csiNode *storagev1.CSINode) map[v1.ResourceName]int64 {
|
|
// TODO: stop getting values from Node object in v1.18
|
|
nodeVolumeLimits := volumeLimits(nodeInfo)
|
|
if csiNode != nil {
|
|
for i := range csiNode.Spec.Drivers {
|
|
d := csiNode.Spec.Drivers[i]
|
|
if d.Allocatable != nil && d.Allocatable.Count != nil {
|
|
// TODO: drop GetCSIAttachLimitKey once we don't get values from Node object (v1.18)
|
|
k := v1.ResourceName(volumeutil.GetCSIAttachLimitKey(d.Name))
|
|
nodeVolumeLimits[k] = int64(*d.Allocatable.Count)
|
|
}
|
|
}
|
|
}
|
|
return nodeVolumeLimits
|
|
}
|