Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for topologies (0.17 sec)

  1. pkg/scheduler/framework/plugins/interpodaffinity/filtering.go

    		// to not leave such pods in pending state forever, we check that if no other pod
    		// in the cluster matches the namespace and selector of this pod, the pod matches
    		// its own terms, and the node has all the requested topologies, then we allow the pod
    		// to pass the affinity check.
    		if len(state.affinityCounts) == 0 && podMatchesAllAffinityTerms(state.podInfo.RequiredAffinityTerms, state.podInfo.Pod) {
    			return true
    		}
    		return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    		{Event: framework.ClusterEvent{Resource: framework.PersistentVolume, ActionType: framework.Add | framework.Update}},
    		// Pods may fail to find available PVs because the node labels do not
    		// match the storage class's allowed topologies or PV's node affinity.
    		// A new or updated node may make pods schedulable.
    		//
    		// A note about UpdateNodeTaint event:
    		// NodeAdd QueueingHint isn't always called because of the internal feature called preCheck.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1/generated.proto

      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
      optional string volumeBindingMode = 7;
    
      // allowedTopologies restrict the node topologies where volumes can be dynamically provisioned.
      // Each volume plugin defines its own supported topology specifications.
      // An empty TopologySelectorTerm list means there is no topology restriction.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
      optional string volumeBindingMode = 7;
    
      // allowedTopologies restrict the node topologies where volumes can be dynamically provisioned.
      // Each volume plugin defines its own supported topology specifications.
      // An empty TopologySelectorTerm list means there is no topology restriction.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. pkg/apis/storage/validation/validation_test.go

    	}
    }
    
    func makeClass(mode *storage.VolumeBindingMode, topologies []api.TopologySelectorTerm) *storage.StorageClass {
    	return &storage.StorageClass{
    		ObjectMeta:        metav1.ObjectMeta{Name: "foo", ResourceVersion: "foo"},
    		Provisioner:       "kubernetes.io/foo-provisioner",
    		ReclaimPolicy:     &deleteReclaimPolicy,
    		VolumeBindingMode: mode,
    		AllowedTopologies: topologies,
    	}
    }
    
    type bindingTest struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	"allowedTopologies":    "allowedTopologies restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	"allowedTopologies":    "allowedTopologies restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/storage/v1/generated.proto

      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
      optional string volumeBindingMode = 7;
    
      // allowedTopologies restrict the node topologies where volumes can be dynamically provisioned.
      // Each volume plugin defines its own supported topology specifications.
      // An empty TopologySelectorTerm list means there is no topology restriction.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
      optional string volumeBindingMode = 7;
    
      // allowedTopologies restrict the node topologies where volumes can be dynamically provisioned.
      // Each volume plugin defines its own supported topology specifications.
      // An empty TopologySelectorTerm list means there is no topology restriction.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// +optional
    	VolumeBindingMode *VolumeBindingMode `json:"volumeBindingMode,omitempty" protobuf:"bytes,7,opt,name=volumeBindingMode"`
    
    	// allowedTopologies restrict the node topologies where volumes can be dynamically provisioned.
    	// Each volume plugin defines its own supported topology specifications.
    	// An empty TopologySelectorTerm list means there is no topology restriction.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
Back to top