Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for MatchFields (0.49 sec)

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

    			return false
    		}
    	}
    	// Validate MatchFields only has additions (no deletions or mutations)
    	if l := len(oldTerm.MatchFields); l > 0 {
    		if len(newTerm.MatchFields) < l {
    			return false
    		}
    		if !apiequality.Semantic.DeepEqual(newTerm.MatchFields[:l], oldTerm.MatchFields) {
    			return false
    		}
    	}
    	return true
    }
    
    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. CHANGELOG/CHANGELOG-1.11.md

    ### SIG Scheduling
    
    * Schedule DaemonSet Pods in scheduler, rather than the Daemonset controller.
    ([#63223](https://github.com/kubernetes/kubernetes/pull/63223), [@k82cn](https://github.com/k82cn))
    * Added `MatchFields` to `NodeSelectorTerm`; in 1.11, it only supports `metadata.name`. ([#62002](https://github.com/kubernetes/kubernetes/pull/62002), [@k82cn](https://github.com/k82cn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/zz_generated.conversion.go

    	out.MatchExpressions = *(*[]core.NodeSelectorRequirement)(unsafe.Pointer(&in.MatchExpressions))
    	out.MatchFields = *(*[]core.NodeSelectorRequirement)(unsafe.Pointer(&in.MatchFields))
    	return nil
    }
    
    // Convert_v1_NodeSelectorTerm_To_core_NodeSelectorTerm is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// A list of node selector requirements by node's fields.
    	// +optional
    	// +listType=atomic
    	MatchFields []NodeSelectorRequirement `json:"matchFields,omitempty" protobuf:"bytes,2,rep,name=matchFields"`
    }
    
    // A node selector requirement is a selector that contains values, a key, and an operator
    // that relates the key and values.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      repeated NodeSelectorRequirement matchExpressions = 1;
    
      // A list of node selector requirements by node's fields.
      // +optional
      repeated NodeSelectorRequirement matchFields = 2;
    }
    
    // NodeSpec describes the attributes that a node is created with.
    message NodeSpec {
      // PodCIDR represents the pod IP range assigned to the node.
      // +optional
      optional string podCIDR = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    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
    }
    
    // NodeSelectorRequirement is a selector that contains values, a key, and an operator
    // that relates the key and values.
    type NodeSelectorRequirement struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"matchExpressions": "A list of node selector requirements by node's labels.",
    	"matchFields":      "A list of node selector requirements by node's fields.",
    }
    
    func (NodeSelectorTerm) SwaggerDoc() map[string]string {
    	return map_NodeSelectorTerm
    }
    
    var map_NodeSpec = 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)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      repeated NodeSelectorRequirement matchExpressions = 1;
    
      // A list of node selector requirements by node's fields.
      // +optional
      // +listType=atomic
      repeated NodeSelectorRequirement matchFields = 2;
    }
    
    // NodeSpec describes the attributes that a node is created with.
    message NodeSpec {
      // PodCIDR represents the pod IP range assigned to the node.
      // +optional
      optional string podCIDR = 1;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                    }
                  ],
                  "default": {}
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "matchFields": {
                "description": "A list of node selector requirements by node's fields.",
                "items": {
                  "allOf": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                    }
                  ],
                  "default": {}
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "matchFields": {
                "description": "A list of node selector requirements by node's fields.",
                "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)
Back to top