Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for VolumeCapacityPriority (0.41 sec)

  1. pkg/scheduler/apis/config/validation/validation_pluginargs_test.go

    			}}),
    		},
    		{
    			name: "[VolumeCapacityPriority=off] shape should be nil when the feature is off",
    			features: map[featuregate.Feature]bool{
    				features.VolumeCapacityPriority: false,
    			},
    			args: config.VolumeBindingArgs{
    				BindTimeoutSeconds: 10,
    				Shape:              nil,
    			},
    		},
    		{
    			name: "[VolumeCapacityPriority=off] error if the shape is not nil when the feature is off",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/v1/defaults_test.go

    			},
    		},
    		{
    			name: "VolumeBindingArgs empty, VolumeCapacityPriority disabled",
    			features: map[featuregate.Feature]bool{
    				features.VolumeCapacityPriority: false,
    			},
    			in: &configv1.VolumeBindingArgs{},
    			want: &configv1.VolumeBindingArgs{
    				BindTimeoutSeconds: ptr.To[int64](600),
    			},
    		},
    		{
    			name: "VolumeBindingArgs empty, VolumeCapacityPriority enabled",
    			features: map[featuregate.Feature]bool{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. cmd/kube-scheduler/app/server_test.go

    			flags: []string{
    				"--kubeconfig", configKubeconfig,
    				"--feature-gates=VolumeCapacityPriority=true",
    			},
    			wantPlugins: map[string]*config.Plugins{
    				"default-scheduler": defaults.ExpandedPluginsV1,
    			},
    			restoreFeatures: map[featuregate.Feature]bool{
    				features.VolumeCapacityPriority: false,
    			},
    		},
    		{
    			name: "component configuration v1 with only scheduler name configured",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/validation/validation_pluginargs.go

    	return ValidateVolumeBindingArgsWithOptions(path, args, VolumeBindingArgsValidationOptions{
    		AllowVolumeCapacityPriority: utilfeature.DefaultFeatureGate.Enabled(features.VolumeCapacityPriority),
    	})
    }
    
    // ValidateVolumeBindingArgsWithOptions validates that VolumeBindingArgs and VolumeBindingArgsValidationOptions with scheduler features.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 09:29:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  5. pkg/features/kube_features.go

    	VolumeAttributesClass featuregate.Feature = "VolumeAttributesClass"
    
    	// owner: @cofyc
    	// alpha: v1.21
    	VolumeCapacityPriority featuregate.Feature = "VolumeCapacityPriority"
    
    	// owner: @ksubrmnn
    	// alpha: v1.14
    	//
    	// Allows kube-proxy to create DSR loadbalancers for Windows
    	WinDSR featuregate.Feature = "WinDSR"
    
    	// owner: @ksubrmnn
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top