Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for VolumeBindingArgs (0.43 sec)

  1. pkg/scheduler/apis/config/testing/defaults/defaults.go

    			},
    		},
    	},
    	{
    		Name: "PodTopologySpread",
    		Args: &config.PodTopologySpreadArgs{
    			DefaultingType: config.SystemDefaulting,
    		},
    	},
    	{
    		Name: "VolumeBinding",
    		Args: &config.VolumeBindingArgs{
    			BindTimeoutSeconds: 600,
    		},
    	},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/v1/defaults.go

    	if obj.HardPodAffinityWeight == nil {
    		obj.HardPodAffinityWeight = ptr.To[int32](1)
    	}
    }
    
    func SetDefaults_VolumeBindingArgs(obj *configv1.VolumeBindingArgs) {
    	if obj.BindTimeoutSeconds == nil {
    		obj.BindTimeoutSeconds = ptr.To[int64](600)
    	}
    	if len(obj.Shape) == 0 && feature.DefaultFeatureGate.Enabled(features.VolumeCapacityPriority) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    		nodes                   []*v1.Node
    		pvcs                    []*v1.PersistentVolumeClaim
    		pvs                     []*v1.PersistentVolume
    		fts                     feature.Features
    		args                    *config.VolumeBindingArgs
    		wantPreFilterResult     *framework.PreFilterResult
    		wantPreFilterStatus     *framework.Status
    		wantStateAfterPreFilter *stateData
    		wantFilterStatus        []*framework.Status
    		wantScores              []int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    func New(ctx context.Context, plArgs runtime.Object, fh framework.Handle, fts feature.Features) (framework.Plugin, error) {
    	args, ok := plArgs.(*config.VolumeBindingArgs)
    	if !ok {
    		return nil, fmt.Errorf("want args to be of type VolumeBindingArgs, got %T", plArgs)
    	}
    	if err := validation.ValidateVolumeBindingArgsWithOptions(nil, args, validation.VolumeBindingArgsValidationOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.21.md

    - When using `Containerd` on Windows, the `C:\Windows\System32\drivers\etc\hosts` file will now be managed by kubelet. ([#83730](https://github.com/kubernetes/kubernetes/pull/83730), [@claudiubelu](https://github.com/claudiubelu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    		"k8s.io/kube-scheduler/config/v1.UtilizationShapePoint":                                                 schema_k8sio_kube_scheduler_config_v1_UtilizationShapePoint(ref),
    		"k8s.io/kube-scheduler/config/v1.VolumeBindingArgs":                                                     schema_k8sio_kube_scheduler_config_v1_VolumeBindingArgs(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top