Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for matchLabelExpressions (0.29 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_TopologySelectorTerm_To_core_TopologySelectorTerm(in *v1.TopologySelectorTerm, out *core.TopologySelectorTerm, s conversion.Scope) error {
    	out.MatchLabelExpressions = *(*[]core.TopologySelectorLabelRequirement)(unsafe.Pointer(&in.MatchLabelExpressions))
    	return nil
    }
    
    // Convert_v1_TopologySelectorTerm_To_core_TopologySelectorTerm 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)
  2. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    	exprMap := make(map[string]sets.Set[string])
    	exprPath := fldPath.Child("matchLabelExpressions")
    
    	// Allow empty MatchLabelExpressions, in case this field becomes optional in the future.
    	for i, req := range term.MatchLabelExpressions {
    		idxPath := exprPath.Index(i)
    		valueSet, exprErrs := validateTopologySelectorLabelRequirement(req, idxPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// A list of topology selector requirements by labels.
    	// +optional
    	// +listType=atomic
    	MatchLabelExpressions []TopologySelectorLabelRequirement `json:"matchLabelExpressions,omitempty" protobuf:"bytes,1,rep,name=matchLabelExpressions"`
    }
    
    // A topology selector requirement is a selector that matches given label.
    // This is an alpha feature and may change in the future.
    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. common-protos/k8s.io/api/core/v1/generated.proto

    // +structType=atomic
    message TopologySelectorTerm {
      // A list of topology selector requirements by labels.
      // +optional
      repeated TopologySelectorLabelRequirement matchLabelExpressions = 1;
    }
    
    // TopologySpreadConstraint specifies how to spread matching pods among the given topology.
    message TopologySpreadConstraint {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    // This is an alpha feature and may change in the future.
    type TopologySelectorTerm struct {
    	// A list of topology selector requirements by labels.
    	// +optional
    	MatchLabelExpressions []TopologySelectorLabelRequirement
    }
    
    // TopologySelectorLabelRequirement is a selector that matches given label.
    // This is an alpha feature and may change in the future.
    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

    	"matchLabelExpressions": "A list of topology selector requirements by labels.",
    }
    
    func (TopologySelectorTerm) SwaggerDoc() map[string]string {
    	return map_TopologySelectorTerm
    }
    
    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

    // +structType=atomic
    message TopologySelectorTerm {
      // A list of topology selector requirements by labels.
      // +optional
      // +listType=atomic
      repeated TopologySelectorLabelRequirement matchLabelExpressions = 1;
    }
    
    // TopologySpreadConstraint specifies how to spread matching pods among the given topology.
    message TopologySpreadConstraint {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

            "properties": {
              "matchLabelExpressions": {
                "description": "A list of topology selector requirements by labels.",
                "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)
Back to top