Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for MatchExpressions (0.38 sec)

  1. pkg/apis/core/validation/validation.go

    	if len(oldTerm.MatchExpressions) == 0 && len(oldTerm.MatchFields) == 0 {
    		if len(newTerm.MatchExpressions) > 0 || len(newTerm.MatchFields) > 0 {
    			return false
    		}
    	}
    
    	// Validate MatchExpressions only has additions (no deletions or mutations)
    	if l := len(oldTerm.MatchExpressions); l > 0 {
    		if len(newTerm.MatchExpressions) < l {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_NodeSelectorTerm_To_core_NodeSelectorTerm(in *v1.NodeSelectorTerm, out *core.NodeSelectorTerm, s conversion.Scope) error {
    	out.MatchExpressions = *(*[]core.NodeSelectorRequirement)(unsafe.Pointer(&in.MatchExpressions))
    	out.MatchFields = *(*[]core.NodeSelectorRequirement)(unsafe.Pointer(&in.MatchFields))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    // +structType=atomic
    type NodeSelectorTerm struct {
    	// A list of node selector requirements by node's labels.
    	// +optional
    	// +listType=atomic
    	MatchExpressions []NodeSelectorRequirement `json:"matchExpressions,omitempty" protobuf:"bytes,1,rep,name=matchExpressions"`
    	// A list of node selector requirements by node's fields.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
            "properties": {
              "matchExpressions": {
                "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
                "items": {
                  "allOf": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    // them are ANDed.
    // The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.
    type NodeSelectorTerm struct {
    	// A list of node selector requirements by node's labels.
    	MatchExpressions []NodeSelectorRequirement
    	// A list of node selector requirements by node's fields.
    	MatchFields []NodeSelectorRequirement
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (NodeAffinity) SwaggerDoc() map[string]string {
    	return map_NodeAffinity
    }
    
    var map_NodeCondition = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // request, requiredDuringScheduling affinity expressions, etc.),
      // compute a sum by iterating through the elements of this field and adding
      // "weight" to the sum if the node matches the corresponding matchExpressions; the
      // node(s) with the highest sum are the most preferred.
      // +optional
      // +listType=atomic
      repeated PreferredSchedulingTerm preferredDuringSchedulingIgnoredDuringExecution = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top