Add more volume types and unbound pvcs etc

This commit is contained in:
Hemant Kumar 2019-02-15 15:43:06 -05:00
parent b3cc469997
commit a3a93c560b
3 changed files with 193 additions and 71 deletions

View File

@ -154,19 +154,22 @@ func (c *CSIMaxVolumeLimitChecker) getCSIDriver(pvc *v1.PersistentVolumeClaim) (
placeHolderCSIDriver := "" placeHolderCSIDriver := ""
placeHolderHandle := "" placeHolderHandle := ""
if pvName == "" { if pvName == "" {
klog.V(4).Infof("Persistent volume had no name for claim %s/%s", namespace, pvcName) klog.V(5).Infof("Persistent volume had no name for claim %s/%s", namespace, pvcName)
return c.getDriverNameFromSC(pvc) return c.getDriverNameFromSC(pvc)
} }
pv, err := c.pvInfo.GetPersistentVolumeInfo(pvName) pv, err := c.pvInfo.GetPersistentVolumeInfo(pvName)
if err != nil { if err != nil {
klog.V(4).Infof("Unable to look up PV info for PVC %s/%s and PV %s", namespace, pvcName, pvName) klog.V(4).Infof("Unable to look up PV info for PVC %s/%s and PV %s", namespace, pvcName, pvName)
return placeHolderCSIDriver, placeHolderHandle // 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 c.getDriverNameFromSC(pvc)
} }
csiSource := pv.Spec.PersistentVolumeSource.CSI csiSource := pv.Spec.PersistentVolumeSource.CSI
if csiSource == nil { if csiSource == nil {
klog.V(4).Infof("Not considering non-CSI volume %s/%s", namespace, pvcName) klog.V(5).Infof("Not considering non-CSI volume %s/%s", namespace, pvcName)
return placeHolderCSIDriver, placeHolderHandle return placeHolderCSIDriver, placeHolderHandle
} }
return csiSource.Driver, csiSource.VolumeHandle return csiSource.Driver, csiSource.VolumeHandle
@ -175,21 +178,26 @@ func (c *CSIMaxVolumeLimitChecker) getCSIDriver(pvc *v1.PersistentVolumeClaim) (
func (c *CSIMaxVolumeLimitChecker) getDriverNameFromSC(pvc *v1.PersistentVolumeClaim) (string, string) { func (c *CSIMaxVolumeLimitChecker) getDriverNameFromSC(pvc *v1.PersistentVolumeClaim) (string, string) {
namespace := pvc.Namespace namespace := pvc.Namespace
pvcName := pvc.Name pvcName := pvc.Name
scName := *pvc.Spec.StorageClassName scName := pvc.Spec.StorageClassName
placeHolderCSIDriver := "" placeHolderCSIDriver := ""
placeHolderHandle := "" placeHolderHandle := ""
if scName == "" { if scName == nil {
klog.V(4).Infof("pvc %s/%s has no storageClass", namespace, pvcName) // if StorageClass is not set or 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.
klog.V(5).Infof("pvc %s/%s has no storageClass", namespace, pvcName)
return placeHolderCSIDriver, placeHolderHandle return placeHolderCSIDriver, placeHolderHandle
} }
storageClass, err := c.scInfo.GetStorageClassInfo(scName) storageClass, err := c.scInfo.GetStorageClassInfo(*scName)
if err != nil { if err != nil {
klog.V(4).Infof("no storage %s found for pvc %s/%s", scName, namespace, pvcName) klog.V(5).Infof("no storage %s found for pvc %s/%s", *scName, namespace, pvcName)
return placeHolderCSIDriver, placeHolderHandle return placeHolderCSIDriver, placeHolderHandle
} }
// We use random prefix to avoid conflict with volume-ids. If PVC is bound in the middle
// predicate and there is another pod(on same node) that uses same volume then we will overcount
// the volume and consider both volumes as different.
volumeHandle := fmt.Sprintf("%s-%s/%s", c.randomVolumeIDPrefix, namespace, pvcName) volumeHandle := fmt.Sprintf("%s-%s/%s", c.randomVolumeIDPrefix, namespace, pvcName)
return storageClass.Provisioner, volumeHandle return storageClass.Provisioner, volumeHandle
} }

View File

@ -17,6 +17,7 @@ limitations under the License.
package predicates package predicates
import ( import (
"fmt"
"reflect" "reflect"
"testing" "testing"
@ -35,7 +36,7 @@ func TestCSIVolumeCountPredicate(t *testing.T) {
{ {
VolumeSource: v1.VolumeSource{ VolumeSource: v1.VolumeSource{
PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{ PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{
ClaimName: "csi-ebs", ClaimName: "csi-ebs-0",
}, },
}, },
}, },
@ -83,7 +84,70 @@ func TestCSIVolumeCountPredicate(t *testing.T) {
{ {
VolumeSource: v1.VolumeSource{ VolumeSource: v1.VolumeSource{
PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{ PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{
ClaimName: "csi-ebs-4", ClaimName: "csi-4",
},
},
},
},
},
}
// Different pod than pendingVolumePod, but using the same unbound PVC
unboundPVCPod2 := &v1.Pod{
Spec: v1.PodSpec{
Volumes: []v1.Volume{
{
VolumeSource: v1.VolumeSource{
PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{
ClaimName: "csi-4",
},
},
},
},
},
}
missingPVPod := &v1.Pod{
Spec: v1.PodSpec{
Volumes: []v1.Volume{
{
VolumeSource: v1.VolumeSource{
PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{
ClaimName: "csi-6",
},
},
},
},
},
}
noSCPVCPod := &v1.Pod{
Spec: v1.PodSpec{
Volumes: []v1.Volume{
{
VolumeSource: v1.VolumeSource{
PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{
ClaimName: "csi-5",
},
},
},
},
},
}
gceTwoVolPod := &v1.Pod{
Spec: v1.PodSpec{
Volumes: []v1.Volume{
{
VolumeSource: v1.VolumeSource{
PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{
ClaimName: "cs-gce-1",
},
},
},
{
VolumeSource: v1.VolumeSource{
PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{
ClaimName: "csi-gce-2",
}, },
}, },
}, },
@ -96,22 +160,25 @@ func TestCSIVolumeCountPredicate(t *testing.T) {
existingPods []*v1.Pod existingPods []*v1.Pod
filterName string filterName string
maxVols int maxVols int
driverNames []string
fits bool fits bool
test string test string
}{ }{
{ {
newPod: oneVolPod, newPod: oneVolPod,
existingPods: []*v1.Pod{runningPod, twoVolPod}, existingPods: []*v1.Pod{runningPod, twoVolPod},
filterName: "csi-ebs", filterName: "csi",
maxVols: 4, maxVols: 4,
driverNames: []string{"ebs"},
fits: true, fits: true,
test: "fits when node capacity >= new pods CSI volume", test: "fits when node capacity >= new pods CSI volume",
}, },
{ {
newPod: oneVolPod, newPod: oneVolPod,
existingPods: []*v1.Pod{runningPod, twoVolPod}, existingPods: []*v1.Pod{runningPod, twoVolPod},
filterName: "csi-ebs", filterName: "csi",
maxVols: 2, maxVols: 2,
driverNames: []string{"ebs"},
fits: false, fits: false,
test: "doesn't when node capacity <= pods CSI volume", test: "doesn't when node capacity <= pods CSI volume",
}, },
@ -119,10 +186,60 @@ func TestCSIVolumeCountPredicate(t *testing.T) {
{ {
newPod: oneVolPod, newPod: oneVolPod,
existingPods: []*v1.Pod{pendingVolumePod, twoVolPod}, existingPods: []*v1.Pod{pendingVolumePod, twoVolPod},
filterName: "csi-ebs", filterName: "csi",
maxVols: 2, maxVols: 2,
driverNames: []string{"ebs"},
fits: false, fits: false,
test: "doesn't when node capacity <= pods CSI volume", test: "count pending PVCs towards capacity <= pods CSI volume",
},
// two same pending PVCs should be counted as 1
{
newPod: oneVolPod,
existingPods: []*v1.Pod{pendingVolumePod, unboundPVCPod2, twoVolPod},
filterName: "csi",
maxVols: 3,
driverNames: []string{"ebs"},
fits: true,
test: "count multiple pending pvcs towards capacity >= pods CSI volume",
},
// should count PVCs with invalid PV name but valid SC
{
newPod: oneVolPod,
existingPods: []*v1.Pod{missingPVPod, twoVolPod},
filterName: "csi",
maxVols: 2,
driverNames: []string{"ebs"},
fits: false,
test: "should count PVCs with invalid PV name but valid SC",
},
// don't count a volume which has storageclass missing
{
newPod: oneVolPod,
existingPods: []*v1.Pod{runningPod, noSCPVCPod},
filterName: "csi",
maxVols: 2,
driverNames: []string{"ebs"},
fits: true,
test: "don't count pvcs with missing SC towards capacity",
},
// don't count multiple volume types
{
newPod: oneVolPod,
existingPods: []*v1.Pod{gceTwoVolPod, twoVolPod},
filterName: "csi",
maxVols: 2,
driverNames: []string{"ebs", "gce"},
fits: true,
test: "don't count pvcs with different type towards capacity",
},
{
newPod: gceTwoVolPod,
existingPods: []*v1.Pod{twoVolPod, runningPod},
filterName: "csi",
maxVols: 2,
driverNames: []string{"ebs", "gce"},
fits: true,
test: "don't count pvcs with different type towards capacity",
}, },
} }
@ -130,8 +247,11 @@ func TestCSIVolumeCountPredicate(t *testing.T) {
expectedFailureReasons := []PredicateFailureReason{ErrMaxVolumeCountExceeded} expectedFailureReasons := []PredicateFailureReason{ErrMaxVolumeCountExceeded}
// running attachable predicate tests with feature gate and limit present on nodes // running attachable predicate tests with feature gate and limit present on nodes
for _, test := range tests { for _, test := range tests {
node := getNodeWithPodAndVolumeLimits(test.existingPods, int64(test.maxVols), test.filterName) node := getNodeWithPodAndVolumeLimits(test.existingPods, int64(test.maxVols), test.driverNames...)
pred := NewCSIMaxVolumeLimitPredicate(getFakeCSIPVInfo("csi-ebs", "csi-ebs"), getFakeCSIPVCInfo("csi-ebs", "csi-ebs-gp2"), getFakeCSIStorageClassInfo("csi-ebs-gp2", "csi-ebs")) pred := NewCSIMaxVolumeLimitPredicate(getFakeCSIPVInfo(test.filterName, test.driverNames...),
getFakeCSIPVCInfo(test.filterName, "csi-sc", test.driverNames...),
getFakeCSIStorageClassInfo("csi-sc", test.driverNames[0]))
fits, reasons, err := pred(test.newPod, GetPredicateMetadata(test.newPod, nil), node) fits, reasons, err := pred(test.newPod, GetPredicateMetadata(test.newPod, nil), node)
if err != nil { if err != nil {
t.Errorf("Using allocatable [%s]%s: unexpected error: %v", test.filterName, test.test, err) t.Errorf("Using allocatable [%s]%s: unexpected error: %v", test.filterName, test.test, err)
@ -145,63 +265,56 @@ func TestCSIVolumeCountPredicate(t *testing.T) {
} }
} }
func getFakeCSIPVInfo(volumeName, driverName string) FakePersistentVolumeInfo { func getFakeCSIPVInfo(volumeName string, driverNames ...string) FakePersistentVolumeInfo {
return FakePersistentVolumeInfo{ pvInfos := FakePersistentVolumeInfo{}
{ for _, driver := range driverNames {
ObjectMeta: metav1.ObjectMeta{Name: volumeName}, for j := 0; j < 4; j++ {
Spec: v1.PersistentVolumeSpec{ volumeHandle := fmt.Sprintf("%s-%s-%d", volumeName, driver, j)
PersistentVolumeSource: v1.PersistentVolumeSource{ pv := v1.PersistentVolume{
CSI: &v1.CSIPersistentVolumeSource{ ObjectMeta: metav1.ObjectMeta{Name: volumeHandle},
Driver: driverName, Spec: v1.PersistentVolumeSpec{
VolumeHandle: volumeName, PersistentVolumeSource: v1.PersistentVolumeSource{
CSI: &v1.CSIPersistentVolumeSource{
Driver: driver,
VolumeHandle: volumeHandle,
},
}, },
}, },
}, }
}, pvInfos = append(pvInfos, pv)
{ }
ObjectMeta: metav1.ObjectMeta{Name: volumeName + "-2"},
Spec: v1.PersistentVolumeSpec{
PersistentVolumeSource: v1.PersistentVolumeSource{
CSI: &v1.CSIPersistentVolumeSource{
Driver: driverName,
VolumeHandle: volumeName + "-2",
},
},
},
},
{
ObjectMeta: metav1.ObjectMeta{Name: volumeName + "-3"},
Spec: v1.PersistentVolumeSpec{
PersistentVolumeSource: v1.PersistentVolumeSource{
CSI: &v1.CSIPersistentVolumeSource{
Driver: driverName,
VolumeHandle: volumeName + "-3",
},
},
},
},
} }
return pvInfos
} }
func getFakeCSIPVCInfo(volumeName, scName string) FakePersistentVolumeClaimInfo { func getFakeCSIPVCInfo(volumeName, scName string, driverNames ...string) FakePersistentVolumeClaimInfo {
return FakePersistentVolumeClaimInfo{ pvcInfos := FakePersistentVolumeClaimInfo{}
{ for _, driver := range driverNames {
ObjectMeta: metav1.ObjectMeta{Name: volumeName}, for j := 0; j < 4; j++ {
Spec: v1.PersistentVolumeClaimSpec{VolumeName: volumeName}, v := fmt.Sprintf("%s-%s-%d", volumeName, driver, j)
}, pvc := v1.PersistentVolumeClaim{
{ ObjectMeta: metav1.ObjectMeta{Name: v},
ObjectMeta: metav1.ObjectMeta{Name: volumeName + "-2"}, Spec: v1.PersistentVolumeClaimSpec{VolumeName: v},
Spec: v1.PersistentVolumeClaimSpec{VolumeName: volumeName + "-2"}, }
}, pvcInfos = append(pvcInfos, pvc)
{ }
ObjectMeta: metav1.ObjectMeta{Name: volumeName + "-3"},
Spec: v1.PersistentVolumeClaimSpec{VolumeName: volumeName + "-3"},
},
{
ObjectMeta: metav1.ObjectMeta{Name: volumeName + "-4"},
Spec: v1.PersistentVolumeClaimSpec{StorageClassName: &scName},
},
} }
pvcInfos = append(pvcInfos, v1.PersistentVolumeClaim{
ObjectMeta: metav1.ObjectMeta{Name: volumeName + "-4"},
Spec: v1.PersistentVolumeClaimSpec{StorageClassName: &scName},
})
pvcInfos = append(pvcInfos, v1.PersistentVolumeClaim{
ObjectMeta: metav1.ObjectMeta{Name: volumeName + "-5"},
Spec: v1.PersistentVolumeClaimSpec{},
})
// a pvc with missing PV but available storageclass.
pvcInfos = append(pvcInfos, v1.PersistentVolumeClaim{
ObjectMeta: metav1.ObjectMeta{Name: volumeName + "-6"},
Spec: v1.PersistentVolumeClaimSpec{StorageClassName: &scName, VolumeName: "missing-in-action"},
})
return pvcInfos
} }
func getFakeCSIStorageClassInfo(scName, provisionerName string) FakeStorageClassInfo { func getFakeCSIStorageClassInfo(scName, provisionerName string) FakeStorageClassInfo {

View File

@ -937,16 +937,17 @@ func TestMaxVolumeFuncM4(t *testing.T) {
} }
} }
func getNodeWithPodAndVolumeLimits(pods []*v1.Pod, limit int64, filter string) *schedulernodeinfo.NodeInfo { func getNodeWithPodAndVolumeLimits(pods []*v1.Pod, limit int64, driverNames ...string) *schedulernodeinfo.NodeInfo {
nodeInfo := schedulernodeinfo.NewNodeInfo(pods...) nodeInfo := schedulernodeinfo.NewNodeInfo(pods...)
node := &v1.Node{ node := &v1.Node{
ObjectMeta: metav1.ObjectMeta{Name: "node-for-max-pd-test-1"}, ObjectMeta: metav1.ObjectMeta{Name: "node-for-max-pd-test-1"},
Status: v1.NodeStatus{ Status: v1.NodeStatus{
Allocatable: v1.ResourceList{ Allocatable: v1.ResourceList{},
getVolumeLimitKey(filter): *resource.NewQuantity(limit, resource.DecimalSI),
},
}, },
} }
for _, driver := range driverNames {
node.Status.Allocatable[getVolumeLimitKey(driver)] = *resource.NewQuantity(limit, resource.DecimalSI)
}
nodeInfo.SetNode(node) nodeInfo.SetNode(node)
return nodeInfo return nodeInfo
} }