From daa1d287e4dd0414d9f4600414bf8a0d4ceca983 Mon Sep 17 00:00:00 2001 From: major1201 Date: Wed, 22 Mar 2023 17:23:05 +0800 Subject: [PATCH] fix GetPodVolumeClaims in comments --- pkg/scheduler/framework/plugins/volumebinding/binder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/scheduler/framework/plugins/volumebinding/binder.go b/pkg/scheduler/framework/plugins/volumebinding/binder.go index b9ac4cb0427..9b5c231d21f 100644 --- a/pkg/scheduler/framework/plugins/volumebinding/binder.go +++ b/pkg/scheduler/framework/plugins/volumebinding/binder.go @@ -125,7 +125,7 @@ type InTreeToCSITranslator interface { // // This integrates into the existing scheduler workflow as follows: // 1. The scheduler takes a Pod off the scheduler queue and processes it serially: -// a. Invokes all pre-filter plugins for the pod. GetPodVolumes() is invoked +// a. Invokes all pre-filter plugins for the pod. GetPodVolumeClaims() is invoked // here, pod volume information will be saved in current scheduling cycle state for later use. // If pod has bound immediate PVCs, GetEligibleNodes() is invoked to potentially reduce // down the list of eligible nodes based on the bound PV's NodeAffinity (if any).