Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 180 for MatchFields (0.2 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta1.StatefulSet.json

                          "values": [
                            "valuesValue"
                          ]
                        }
                      ],
                      "matchFields": [
                        {
                          "key": "keyValue",
                          "operator": "operatorValue",
                          "values": [
                            "valuesValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 57.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.yaml

          - preference:
              matchExpressions:
              - key: keyValue
                operator: operatorValue
                values:
                - valuesValue
              matchFields:
              - key: keyValue
                operator: operatorValue
                values:
                - valuesValue
            weight: 1
          requiredDuringSchedulingIgnoredDuringExecution:
            nodeSelectorTerms:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.yaml

                      matchExpressions:
                      - key: keyValue
                        operator: operatorValue
                        values:
                        - valuesValue
                      matchFields:
                      - key: keyValue
                        operator: operatorValue
                        values:
                        - valuesValue
                    weight: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.yaml

                      matchExpressions:
                      - key: keyValue
                        operator: operatorValue
                        values:
                        - valuesValue
                      matchFields:
                      - key: keyValue
                        operator: operatorValue
                        values:
                        - valuesValue
                    weight: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.yaml

              - preference:
                  matchExpressions:
                  - key: keyValue
                    operator: operatorValue
                    values:
                    - valuesValue
                  matchFields:
                  - key: keyValue
                    operator: operatorValue
                    values:
                    - valuesValue
                weight: 1
              requiredDuringSchedulingIgnoredDuringExecution:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.yaml

              - preference:
                  matchExpressions:
                  - key: keyValue
                    operator: operatorValue
                    values:
                    - valuesValue
                  matchFields:
                  - key: keyValue
                    operator: operatorValue
                    values:
                    - valuesValue
                weight: 1
              requiredDuringSchedulingIgnoredDuringExecution:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity.go

    	terms := affinity.NodeAffinity.RequiredDuringSchedulingIgnoredDuringExecution.NodeSelectorTerms
    	var nodeNames sets.Set[string]
    	for _, t := range terms {
    		var termNodeNames sets.Set[string]
    		for _, r := range t.MatchFields {
    			if r.Key == metav1.ObjectNameField && r.Operator == v1.NodeSelectorOpIn {
    				// The requirements represent ANDed constraints, and so we need to
    				// find the intersection of nodes.
    				s := sets.New(r.Values...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller_test.go

    			}
    
    			if len(nodeSelector.NodeSelectorTerms[0].MatchFields) != 1 {
    				t.Fatalf("incorrect number of fields in node selector term for pod %s, expected: 1, got: %d.",
    					pod.Name, len(nodeSelector.NodeSelectorTerms[0].MatchFields))
    			}
    
    			field := nodeSelector.NodeSelectorTerms[0].MatchFields[0]
    			if field.Key == metav1.ObjectNameField {
    				if field.Operator != v1.NodeSelectorOpIn {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation_test.go

    			spec: core.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "123",
    					Namespace: "ns",
    				},
    				Spec: validPodSpec(&core.Affinity{
    					NodeAffinity: &core.NodeAffinity{
    						RequiredDuringSchedulingIgnoredDuringExecution: &core.NodeSelector{
    							NodeSelectorTerms: []core.NodeSelectorTerm{{
    								MatchFields: []core.NodeSelectorRequirement{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  10. 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 (1)
Back to top