Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for PreferredSchedulingTerm (0.44 sec)

  1. pkg/apis/core/types.go

    	// +optional
    	PreferredDuringSchedulingIgnoredDuringExecution []PreferredSchedulingTerm
    }
    
    // PreferredSchedulingTerm represents an empty preferred scheduling term matches all objects with implicit weight 0
    // (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).
    type PreferredSchedulingTerm 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)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.PreferredSchedulingTerm"
              },
              "type": "array"
            },
            "requiredDuringSchedulingIgnoredDuringExecution": {
              "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelector",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // "weight" to the sum if the node matches the corresponding matchExpressions; the
      // node(s) with the highest sum are the most preferred.
      // +optional
      repeated PreferredSchedulingTerm preferredDuringSchedulingIgnoredDuringExecution = 2;
    }
    
    // NodeCondition contains condition information for a node.
    message NodeCondition {
      // Type of node condition.
      optional string type = 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)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // "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;
    }
    
    // NodeCondition contains condition information for a node.
    message NodeCondition {
      // Type of node condition.
      optional string type = 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)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// node(s) with the highest sum are the most preferred.
    	// +optional
    	// +listType=atomic
    	PreferredDuringSchedulingIgnoredDuringExecution []PreferredSchedulingTerm `json:"preferredDuringSchedulingIgnoredDuringExecution,omitempty" protobuf:"bytes,2,rep,name=preferredDuringSchedulingIgnoredDuringExecution"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.core.v1.PreferredSchedulingTerm"
                    }
                  ],
                  "default": {}
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"weight":     "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
    	"preference": "A node selector term, associated with the corresponding weight.",
    }
    
    func (PreferredSchedulingTerm) SwaggerDoc() map[string]string {
    	return map_PreferredSchedulingTerm
    }
    
    var map_Probe = 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. pkg/apis/core/validation/validation.go

    		}
    	}
    	return allErrors
    }
    
    // ValidatePreferredSchedulingTerms tests that the specified SoftNodeAffinity fields has valid data
    func ValidatePreferredSchedulingTerms(terms []core.PreferredSchedulingTerm, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	for i, term := range terms {
    		if term.Weight <= 0 || term.Weight > 100 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.core.v1.PreferredSchedulingTerm"
                    }
                  ],
                  "default": {}
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/api__v1_openapi.json

                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.core.v1.PreferredSchedulingTerm"
                    }
                  ],
                  "default": {}
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top