Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for NodeSelectorTerms (0.48 sec)

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

    	allErrs := field.ErrorList{}
    
    	termFldPath := fldPath.Child("nodeSelectorTerms")
    	if len(nodeSelector.NodeSelectorTerms) == 0 {
    		return append(allErrs, field.Required(termFldPath, "must have at least one node selector term"))
    	}
    
    	for i, term := range nodeSelector.NodeSelectorTerms {
    		allErrs = append(allErrs, ValidateNodeSelectorTerm(term, termFldPath.Index(i))...)
    	}
    
    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_NodeSelector_To_core_NodeSelector(in *v1.NodeSelector, out *core.NodeSelector, s conversion.Scope) error {
    	out.NodeSelectorTerms = *(*[]core.NodeSelectorTerm)(unsafe.Pointer(&in.NodeSelectorTerms))
    	return nil
    }
    
    // Convert_v1_NodeSelector_To_core_NodeSelector 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)
  3. staging/src/k8s.io/api/core/v1/types.go

    // by the node selector terms.
    // +structType=atomic
    type NodeSelector struct {
    	// Required. A list of node selector terms. The terms are ORed.
    	// +listType=atomic
    	NodeSelectorTerms []NodeSelectorTerm `json:"nodeSelectorTerms" protobuf:"bytes,1,rep,name=nodeSelectorTerms"`
    }
    
    // A null or empty node selector term matches no objects. The requirements of
    // them are ANDed.
    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. CHANGELOG/CHANGELOG-1.11.md

    * Fixed incorrect OpenAPI schema for CustomResourceDefinition objects ([#65256](https://github.com/kubernetes/kubernetes/pull/65256), [@liggitt](https://github.com/liggitt))
    * Fixed issue where PersistentVolume.NodeAffinity.NodeSelectorTerms were ANDed instead of ORed. ([#62556](https://github.com/kubernetes/kubernetes/pull/62556), [@msau42](https://github.com/msau42))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

            "properties": {
              "nodeSelectorTerms": {
                "description": "Required. A list of node selector terms. The terms are ORed.",
                "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)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "nodeSelectorTerms": {
                "description": "Required. A list of node selector terms. The terms are ORed.",
                "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)
  7. common-protos/k8s.io/api/core/v1/generated.proto

    // by the node selector terms.
    // +structType=atomic
    message NodeSelector {
      // Required. A list of node selector terms. The terms are ORed.
      repeated NodeSelectorTerm nodeSelectorTerms = 1;
    }
    
    // A node selector requirement is a selector that contains values, a key, and an operator
    // that relates the key and values.
    message NodeSelectorRequirement {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    // over a set of nodes; that is, it represents the OR of the selectors represented
    // by the node selector terms.
    type NodeSelector struct {
    	// Required. A list of node selector terms. The terms are ORed.
    	NodeSelectorTerms []NodeSelectorTerm
    }
    
    // NodeSelectorTerm represents expressions and fields required to select nodes.
    // A null or empty node selector term matches no objects. The requirements of
    // them are ANDed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":                  "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.",
    	"nodeSelectorTerms": "Required. A list of node selector terms. The terms are ORed.",
    }
    
    func (NodeSelector) SwaggerDoc() map[string]string {
    	return map_NodeSelector
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

    // by the node selector terms.
    // +structType=atomic
    message NodeSelector {
      // Required. A list of node selector terms. The terms are ORed.
      // +listType=atomic
      repeated NodeSelectorTerm nodeSelectorTerms = 1;
    }
    
    // A node selector requirement is a selector that contains values, a key, and an operator
    // that relates the key and values.
    message NodeSelectorRequirement {
    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