From b72da953beaa6406ba40052a662b9c48d879768a Mon Sep 17 00:00:00 2001 From: "he.qingguo" Date: Thu, 7 Jan 2021 12:23:14 +0800 Subject: [PATCH] fix typo of [expect] in pkg/controller/../scheduler_binder.go Signed-off-by: he.qingguo --- pkg/controller/volume/scheduling/scheduler_binder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controller/volume/scheduling/scheduler_binder.go b/pkg/controller/volume/scheduling/scheduler_binder.go index 25ffc05b355a..050bcc6b41db 100644 --- a/pkg/controller/volume/scheduling/scheduler_binder.go +++ b/pkg/controller/volume/scheduling/scheduler_binder.go @@ -509,7 +509,7 @@ func (b *volumeBinder) bindAPIUpdate(podName string, bindings []*BindingInfo, cl } // Update claims objects to trigger volume provisioning. Let the PV controller take care of the rest - // PV controller is expect to signal back by removing related annotations if actual provisioning fails + // PV controller is expected to signal back by removing related annotations if actual provisioning fails for i, claim = range claimsToProvision { klog.V(5).Infof("bindAPIUpdate: Pod %q, PVC %q", podName, getPVCName(claim)) newClaim, err := b.kubeClient.CoreV1().PersistentVolumeClaims(claim.Namespace).Update(context.TODO(), claim, metav1.UpdateOptions{})