mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	Merge pull request #59185 from jamiefang/fix-typo
Automatic merge from submit-queue (batch tested with PRs 55606, 59185, 58763, 59072, 59251). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Fix a typo in pkg/controller/volume/persistentvolume/pv_controller.go **What this PR does / why we need it**: Fix typo (a -> an) **Special notes for your reviewer**: none **Release note**: ```release-note none ```
This commit is contained in:
		@@ -373,7 +373,7 @@ func (ctrl *PersistentVolumeController) syncUnboundClaim(claim *v1.PersistentVol
 | 
				
			|||||||
				glog.V(4).Infof("synchronizing unbound PersistentVolumeClaim[%s]: volume is unbound, binding", claimToClaimKey(claim))
 | 
									glog.V(4).Infof("synchronizing unbound PersistentVolumeClaim[%s]: volume is unbound, binding", claimToClaimKey(claim))
 | 
				
			||||||
				if err = checkVolumeSatisfyClaim(volume, claim); err != nil {
 | 
									if err = checkVolumeSatisfyClaim(volume, claim); err != nil {
 | 
				
			||||||
					glog.V(4).Infof("Can't bind the claim to volume %q: %v", volume.Name, err)
 | 
										glog.V(4).Infof("Can't bind the claim to volume %q: %v", volume.Name, err)
 | 
				
			||||||
					//send a event
 | 
										//send an event
 | 
				
			||||||
					msg := fmt.Sprintf("Cannot bind to requested volume %q: %s", volume.Name, err)
 | 
										msg := fmt.Sprintf("Cannot bind to requested volume %q: %s", volume.Name, err)
 | 
				
			||||||
					ctrl.eventRecorder.Event(claim, v1.EventTypeWarning, events.VolumeMismatch, msg)
 | 
										ctrl.eventRecorder.Event(claim, v1.EventTypeWarning, events.VolumeMismatch, msg)
 | 
				
			||||||
					//volume does not satisfy the requirements of the claim
 | 
										//volume does not satisfy the requirements of the claim
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user