Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for TopologyKeys (0.25 sec)

  1. pkg/apis/storage/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *CSINodeDriver) DeepCopyInto(out *CSINodeDriver) {
    	*out = *in
    	if in.TopologyKeys != nil {
    		in, out := &in.TopologyKeys, &out.TopologyKeys
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Allocatable != nil {
    		in, out := &in.Allocatable, &out.Allocatable
    		*out = new(VolumeNodeResources)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/scoring.go

    	}
    	topoSize := make([]int, len(s.Constraints))
    	for _, node := range filteredNodes {
    		if requireAllTopologies && !nodeLabelsMatchSpreadConstraints(node.Node().Labels, s.Constraints) {
    			// Nodes which don't have all required topologyKeys present are ignored
    			// when scoring later.
    			s.IgnoredNodes.Insert(node.Node().Name)
    			continue
    		}
    		for i, constraint := range s.Constraints {
    			// per-node counts are calculated during Score.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. pkg/apis/storage/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_CSINodeDriver_To_storage_CSINodeDriver(in *v1.CSINodeDriver, out *storage.CSINodeDriver, s conversion.Scope) error {
    	out.Name = in.Name
    	out.NodeID = in.NodeID
    	out.TopologyKeys = *(*[]string)(unsafe.Pointer(&in.TopologyKeys))
    	out.Allocatable = (*storage.VolumeNodeResources)(unsafe.Pointer(in.Allocatable))
    	return nil
    }
    
    // Convert_v1_CSINodeDriver_To_storage_CSINodeDriver is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:01 UTC 2022
    - 39.2K bytes
    - Viewed (0)
  4. pkg/apis/storage/v1beta1/zz_generated.conversion.go

    func autoConvert_v1beta1_CSINodeDriver_To_storage_CSINodeDriver(in *v1beta1.CSINodeDriver, out *storage.CSINodeDriver, s conversion.Scope) error {
    	out.Name = in.Name
    	out.NodeID = in.NodeID
    	out.TopologyKeys = *(*[]string)(unsafe.Pointer(&in.TopologyKeys))
    	out.Allocatable = (*storage.VolumeNodeResources)(unsafe.Pointer(in.Allocatable))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:01 UTC 2022
    - 41K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// It is possible for different nodes to use different topology keys.
    	// This can be empty if driver does not support topology.
    	// +optional
    	// +listType=atomic
    	TopologyKeys []string `json:"topologyKeys" protobuf:"bytes,3,rep,name=topologyKeys"`
    
    	// allocatable represents the volume resources of a node that are available for scheduling.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1/types.go

    	// It is possible for different nodes to use different topology keys.
    	// This can be empty if driver does not support topology.
    	// +optional
    	// +listType=atomic
    	TopologyKeys []string `json:"topologyKeys" protobuf:"bytes,3,rep,name=topologyKeys"`
    
    	// allocatable represents the volume resources of a node that are available for scheduling.
    	// This field is beta.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1/generated.pb.go

    			i = encodeVarintGenerated(dAtA, i, uint64(size))
    		}
    		i--
    		dAtA[i] = 0x22
    	}
    	if len(m.TopologyKeys) > 0 {
    		for iNdEx := len(m.TopologyKeys) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.TopologyKeys[iNdEx])
    			copy(dAtA[i:], m.TopologyKeys[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.TopologyKeys[iNdEx])))
    			i--
    			dAtA[i] = 0x1a
    		}
    	}
    	i -= len(m.NodeID)
    	copy(dAtA[i:], m.NodeID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1beta1/generated.pb.go

    			i = encodeVarintGenerated(dAtA, i, uint64(size))
    		}
    		i--
    		dAtA[i] = 0x22
    	}
    	if len(m.TopologyKeys) > 0 {
    		for iNdEx := len(m.TopologyKeys) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.TopologyKeys[iNdEx])
    			copy(dAtA[i:], m.TopologyKeys[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.TopologyKeys[iNdEx])))
    			i--
    			dAtA[i] = 0x1a
    		}
    	}
    	i -= len(m.NodeID)
    	copy(dAtA[i:], m.NodeID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	"topologyKeys": "topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. \"company.com/zone\", \"company.com/region\"). When a driver is initialized on a node,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/generated.proto

      // refer to the node name using the ID that the storage system will
      // understand, e.g. "nodeA" instead of "node1". This field is required.
      optional string nodeID = 2;
    
      // topologyKeys is the list of keys supported by the driver.
      // When a driver is initialized on a cluster, it provides a set of topology
      // keys that it understands (e.g. "company.com/zone", "company.com/region").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top