Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetMultiAttachError (0.3 sec)

  1. pkg/controller/volume/attachdetach/cache/desired_state_of_world.go

    	// state of world
    	GetPodToAdd() map[types.UniquePodName]PodToAdd
    
    	// Mark multi-attach error as reported to prevent spamming multiple
    	// events for same error
    	SetMultiAttachError(v1.UniqueVolumeName, k8stypes.NodeName)
    
    	// GetPodsOnNodes returns list of pods ("namespace/name") that require
    	// given volume on given nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			if len(nodes) > 0 {
    				if !volumeToAttach.MultiAttachErrorReported {
    					rc.reportMultiAttachError(logger, volumeToAttach, nodes)
    					rc.desiredStateOfWorld.SetMultiAttachError(volumeToAttach.VolumeName, volumeToAttach.NodeName)
    				}
    				continue
    			}
    		}
    
    		// Volume/Node doesn't exist, spawn a goroutine to attach it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top