Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 476 for matchExpressions (0.32 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.json

            },
            "matchExpressions": [
              {
                "key": "keyValue",
                "operator": "operatorValue",
                "values": [
                  "valuesValue"
                ]
              }
            ]
          },
          "objectSelector": {
            "matchLabels": {
              "matchLabelsKey": "matchLabelsValue"
            },
            "matchExpressions": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/admissionregistration.k8s.io.v1beta1.ValidatingAdmissionPolicy.yaml

          - resourcesValue
          scope: scopeValue
        matchPolicy: matchPolicyValue
        namespaceSelector:
          matchExpressions:
          - key: keyValue
            operator: operatorValue
            values:
            - valuesValue
          matchLabels:
            matchLabelsKey: matchLabelsValue
        objectSelector:
          matchExpressions:
          - 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
    - 2.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1.ValidatingAdmissionPolicy.json

            },
            "matchExpressions": [
              {
                "key": "keyValue",
                "operator": "operatorValue",
                "values": [
                  "valuesValue"
                ]
              }
            ]
          },
          "objectSelector": {
            "matchLabels": {
              "matchLabelsKey": "matchLabelsValue"
            },
            "matchExpressions": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			node: &node1,
    		},
    		{
    			name: "The labelSelector requirements(items of matchExpressions) are ANDed, the pod cannot schedule onto the node because one of the matchExpression item don't match.",
    			pod: createPodWithAffinityTerms(defaultNamespace, "", podLabel2,
    				[]v1.PodAffinityTerm{
    					{
    						LabelSelector: &metav1.LabelSelector{
    							MatchExpressions: []metav1.LabelSelectorRequirement{
    								{
    									Key:      "service",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_test.go

    func TestMarshalJSONWithOmit(t *testing.T) {
    	cases := []struct {
    		input  LabelSelector
    		result string
    	}{
    		{LabelSelector{}, `{}`},
    		{LabelSelector{MatchExpressions: []LabelSelectorRequirement{}}, `{}`},
    		{LabelSelector{MatchExpressions: []LabelSelectorRequirement{{}}}, `{"matchExpressions":[{"key":"","operator":""}]}`},
    	}
    
    	for i, c := range cases {
    		result, err := gojson.Marshal(&c.input)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 16:49:23 UTC 2021
    - 4K bytes
    - Viewed (0)
  6. pkg/api/pod/warnings_test.go

    						NodeSelectorTerms: []api.NodeSelectorTerm{
    							{MatchExpressions: []api.NodeSelectorRequirement{{Key: `foo`}}},
    						},
    					},
    					PreferredDuringSchedulingIgnoredDuringExecution: []api.PreferredSchedulingTerm{
    						{Preference: api.NodeSelectorTerm{MatchExpressions: []api.NodeSelectorRequirement{{Key: `foo`}}}},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/helper/helpers_test.go

    				{
    					MatchExpressions: []v1.NodeSelectorRequirement{
    						{
    							Key:      "key2",
    							Operator: v1.NodeSelectorOpIn,
    							Values:   []string{"test-value2"},
    						}, {
    							Key:      "key4",
    							Operator: v1.NodeSelectorOpIn,
    							Values:   []string{"test-value4"},
    						},
    					},
    				},
    				{
    					MatchExpressions: []v1.NodeSelectorRequirement{
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pkg/volume/util/util_test.go

    				},
    				Spec: v1.PersistentVolumeSpec{
    					NodeAffinity: &v1.VolumeNodeAffinity{
    						Required: &v1.NodeSelector{
    							NodeSelectorTerms: []v1.NodeSelectorTerm{
    								{
    									MatchExpressions: []v1.NodeSelectorRequirement{},
    								},
    							},
    						},
    					},
    				},
    			},
    			expectedNodeNames: []string{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. manifests/charts/istio-cni/templates/resourcequota.yaml

    apiVersion: v1
    kind: ResourceQuota
    metadata:
      name: {{ template "name" . }}-resource-quota
      namespace: {{ .Release.Namespace }}
    spec:
      hard:
        pods: {{ .Values.cni.resourceQuotas.pods | quote }}
      scopeSelector:
        matchExpressions:
        - operator: In
          scopeName: PriorityClass
          values:
          - system-node-critical
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 388 bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.CSIStorageCapacity.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    nodeTopology:
      matchExpressions:
      - key: keyValue
        operator: operatorValue
        values:
        - valuesValue
      matchLabels:
        matchLabelsKey: matchLabelsValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top