From a3e6fd724c27d9473526ab917607ecaaf73bf13d Mon Sep 17 00:00:00 2001 From: moriya Date: Sun, 2 Jun 2024 23:56:45 +0900 Subject: [PATCH] remove_comment --- pkg/scheduler/framework/plugins/volumezone/volume_zone.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/scheduler/framework/plugins/volumezone/volume_zone.go b/pkg/scheduler/framework/plugins/volumezone/volume_zone.go index c7a0b784f84..e8f51f3a629 100644 --- a/pkg/scheduler/framework/plugins/volumezone/volume_zone.go +++ b/pkg/scheduler/framework/plugins/volumezone/volume_zone.go @@ -312,7 +312,6 @@ func (pl *VolumeZone) getPersistentVolumeClaimNameFromPod(pod *v1.Pod) []string // isSchedulableAfterPersistentVolumeClaimChange is invoked whenever a PersistentVolumeClaim added or updated. // It checks whether the change of PVC has made a previously unschedulable pod schedulable. -// A PVC becoming bound or using a WaitForFirstConsumer storageclass can cause the pod to become schedulable. func (pl *VolumeZone) isSchedulableAfterPersistentVolumeClaimChange(logger klog.Logger, pod *v1.Pod, oldObj, newObj interface{}) (framework.QueueingHint, error) { _, modifiedPVC, err := util.As[*v1.PersistentVolumeClaim](oldObj, newObj) if err != nil {