Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 474 for MatchExpressions (0.38 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/networking.k8s.io.v1.NetworkPolicy.json

            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "podSelector": {
          "matchLabels": {
            "matchLabelsKey": "matchLabelsValue"
          },
          "matchExpressions": [
            {
              "key": "keyValue",
              "operator": "operatorValue",
              "values": [
                "valuesValue"
              ]
            }
          ]
        },
        "ingress": [
          {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/extensions.v1beta1.NetworkPolicy.json

            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "podSelector": {
          "matchLabels": {
            "matchLabelsKey": "matchLabelsValue"
          },
          "matchExpressions": [
            {
              "key": "keyValue",
              "operator": "operatorValue",
              "values": [
                "valuesValue"
              ]
            }
          ]
        },
        "ingress": [
          {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/labels_test.go

    			want: map[string]string{
    				"foo4": "12",
    			},
    		},
    	}
    
    	for _, tc := range cases {
    		ls_in := LabelSelector{MatchLabels: tc.labels, MatchExpressions: matchExpressions}
    		ls_out := LabelSelector{MatchLabels: tc.want, MatchExpressions: matchExpressions}
    
    		got := CloneSelectorAndAddLabel(&ls_in, tc.labelKey, tc.labelValue)
    		if !reflect.DeepEqual(got, &ls_out) {
    			t.Errorf("got %v, want %v", got, tc.want)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 11:09:05 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.NetworkPolicy.yaml

            cidr: cidrValue
            except:
            - exceptValue
          namespaceSelector:
            matchExpressions:
            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
            matchLabels:
              matchLabelsKey: matchLabelsValue
          podSelector:
            matchExpressions:
            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_installation_failed.yaml

      failurePolicy: Fail
      matchPolicy: Equivalent
      name: rev.namespace.sidecar-injector.istio.io
      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
          - default
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: NotIn
          values:
          - canary
      reinvocationPolicy: Never
      rules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2.HorizontalPodAutoscaler.json

              },
              "metric": {
                "name": "nameValue",
                "selector": {
                  "matchLabels": {
                    "matchLabelsKey": "matchLabelsValue"
                  },
                  "matchExpressions": [
                    {
                      "key": "keyValue",
                      "operator": "operatorValue",
                      "values": [
                        "valuesValue"
                      ]
                    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/autoscaling.v2beta1.HorizontalPodAutoscaler.yaml

          metricSelector:
            matchExpressions:
            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
            matchLabels:
              matchLabelsKey: matchLabelsValue
          targetAverageValue: "0"
          targetValue: "0"
        object:
          averageValue: "0"
          metricName: metricNameValue
          selector:
            matchExpressions:
            - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml

            selector:
              matchExpressions:
              - key: istio.io/test-name-part
                operator: In
                values:
                  - group
      - name: slctr-expr-in-no
        hostname: "*.slctr-expr-in-no.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Selector
            selector:
              matchExpressions:
              - key: istio.io/test-name-part
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. pkg/apis/policy/helper.go

    	if selector == nil {
    		return
    	}
    
    	trimmedMatchExpressions := selector.MatchExpressions[:0]
    	for _, exp := range selector.MatchExpressions {
    		if exp.Key != PDBV1beta1Label {
    			trimmedMatchExpressions = append(trimmedMatchExpressions, exp)
    		}
    	}
    	selector.MatchExpressions = trimmedMatchExpressions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 15:29:11 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta1.HorizontalPodAutoscaler.json

              "metricName": "metricNameValue",
              "targetValue": "0",
              "selector": {
                "matchLabels": {
                  "matchLabelsKey": "matchLabelsValue"
                },
                "matchExpressions": [
                  {
                    "key": "keyValue",
                    "operator": "operatorValue",
                    "values": [
                      "valuesValue"
                    ]
                  }
                ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top