Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for matchLabels (0.21 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go

    			dAtA[i] = 0x12
    		}
    	}
    	if len(m.MatchLabels) > 0 {
    		keysForMatchLabels := make([]string, 0, len(m.MatchLabels))
    		for k := range m.MatchLabels {
    			keysForMatchLabels = append(keysForMatchLabels, string(k))
    		}
    		github_com_gogo_protobuf_sortkeys.Strings(keysForMatchLabels)
    		for iNdEx := len(keysForMatchLabels) - 1; iNdEx >= 0; iNdEx-- {
    			v := m.MatchLabels[string(keysForMatchLabels[iNdEx])]
    			baseI := i
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 281.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                      type: array
                                    matchLabels:
                                      additionalProperties:
                                        type: string
                                      description: matchLabels is a map of {key,value}
                                        pairs. A single {key,value} in the matchLabels
                                        map is equivalent to an element of matchExpressions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

    apiVersion: policy/v1
    kind: PodDisruptionBudget
    metadata:
      name: calico-kube-controllers
      namespace: kube-system
      labels:
        k8s-app: calico-kube-controllers
    spec:
      maxUnavailable: 1
      selector:
        matchLabels:
          k8s-app: calico-kube-controllers
    ---
    # Source: calico/templates/calico-kube-controllers.yaml
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: calico-kube-controllers
      namespace: kube-system
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"matchLabels": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

                "x-kubernetes-list-type": "atomic"
              },
              "matchLabels": {
                "additionalProperties": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "matchLabels": {
                "additionalProperties": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                "x-kubernetes-list-type": "atomic"
              },
              "matchLabels": {
                "additionalProperties": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "x-kubernetes-list-type": "atomic"
              },
              "matchLabels": {
                "additionalProperties": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "x-kubernetes-list-type": "atomic"
              },
              "matchLabels": {
                "additionalProperties": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    	if labelSelector != nil {
    		labelKeysMap := map[string]int{}
    		for i, key := range matchLabelKeys {
    			labelKeysMap[key] = i
    		}
    		labelSelectorKeys := sets.New[string]()
    		for key := range labelSelector.MatchLabels {
    			labelSelectorKeys.Insert(key)
    		}
    		for _, matchExpression := range labelSelector.MatchExpressions {
    			key := matchExpression.Key
    			if i, ok := labelKeysMap[key]; ok && labelSelectorKeys.Has(key) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top