Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getVolumeLimits (0.22 sec)

  1. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    	if len(newVolumes) == 0 {
    		return nil
    	}
    
    	// If the node doesn't have volume limits, the predicate will always be true
    	nodeVolumeLimits := getVolumeLimits(nodeInfo, csiNode)
    	if len(nodeVolumeLimits) == 0 {
    		return nil
    	}
    
    	attachedVolumes := make(map[string]string)
    	for _, existingPod := range nodeInfo.Pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pkg/volume/testing/testing.go

    	if resizeOptions.VolumeSpec.Name() == FailVolumeExpansion {
    		return false, fmt.Errorf("fail volume expansion for volume: %s", FailVolumeExpansion)
    	}
    	return true, nil
    }
    
    func (plugin *FakeVolumePlugin) GetVolumeLimits() (map[string]int64, error) {
    	return plugin.VolumeLimits, plugin.VolumeLimitsError
    }
    
    func (plugin *FakeVolumePlugin) VolumeLimitKey(spec *volume.Spec) string {
    	return plugin.LimitKey
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.13.md

    - Fixed GetVolumeLimits log flushing issue ([#69558](https://github.com/kubernetes/kubernetes/pull/69558), [@andyzhangx](https://github.com/andyzhangx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.15.md

    * remove vmsizelist call in azure disk GetVolumeLimits which happens in kubelet finally ([#77851](https://github.com/kubernetes/kubernetes/pull/77851), [@andyzhangx](https://github.com/andyzhangx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.12.md

    * Fix a bug in the scheduler that could cause the scheduler to go to an infinite loop when all nodes in a zone are removed. ([#69758](https://github.com/kubernetes/kubernetes/pull/69758), [@bsalamat](https://github.com/bsalamat))
    * fix GetVolumeLimits log flushing issue ([#69558](https://github.com/kubernetes/kubernetes/pull/69558), [@andyzhangx](https://github.com/andyzhangx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
Back to top