Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 590 for labelSelectors (0.34 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.yaml

              - key: keyValue
                operator: operatorValue
                values:
                - valuesValue
        podAffinity:
          preferredDuringSchedulingIgnoredDuringExecution:
          - podAffinityTerm:
              labelSelector:
                matchExpressions:
                - key: keyValue
                  operator: operatorValue
                  values:
                  - valuesValue
                matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 32.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.NamespaceSelector != nil {
    		in, out := &in.NamespaceSelector, &out.NamespaceSelector
    		*out = new(metav1.LabelSelector)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.ObjectSelector != nil {
    		in, out := &in.ObjectSelector, &out.ObjectSelector
    		*out = new(metav1.LabelSelector)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.ResourceRules != nil {
    		in, out := &in.ResourceRules, &out.ResourceRules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. pkg/registry/networking/networkpolicy/storage/storage_test.go

    			Namespace: "default",
    		},
    		Spec: networking.NetworkPolicySpec{
    			PodSelector: metav1.LabelSelector{
    				MatchLabels: map[string]string{"label-1": "value-1"},
    			},
    			Ingress: []networking.NetworkPolicyIngressRule{
    				{
    					From: []networking.NetworkPolicyPeer{
    						{
    							PodSelector: &metav1.LabelSelector{
    								MatchLabels: map[string]string{"label-2": "value-2"},
    							},
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. pkg/controller/disruption/disruption_test.go

    func TestInvalidSelectors(t *testing.T) {
    	testCases := map[string]struct {
    		labelSelector *metav1.LabelSelector
    	}{
    		"illegal value key": {
    			labelSelector: &metav1.LabelSelector{
    				MatchLabels: map[string]string{
    					"k8s.io/too/many/slashes": "value",
    				},
    			},
    		},
    		"illegal operator": {
    			labelSelector: &metav1.LabelSelector{
    				MatchExpressions: []metav1.LabelSelectorRequirement{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.26.md

      have a ready condition, regardless of whether the PodDisruptionBudget is currently
      healthy.'
       ([#113375](https://github.com/kubernetes/kubernetes/pull/113375), [@atiratree](https://github.com/atiratree))
    - '`metav1.LabelSelectors` specified in API objects are now validated to ensure
      they do not contain invalid label values that will error at time of use. Existing
      invalid objects can be updated, but new objects are required to contain valid
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // See
      // https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
      // for more examples of label selectors.
      //
      // Default to the empty LabelSelector, which matches everything.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector namespaceSelector = 5;
    
      // ObjectSelector decides whether to run the webhook based on if the
      // object has matching labels. objectSelector is evaluated against both
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. pkg/quota/v1/evaluator/core/persistent_volume_claims_test.go

    		Spec:       spec,
    	}
    }
    
    func TestPersistentVolumeClaimEvaluatorUsage(t *testing.T) {
    	classGold := "gold"
    	validClaim := testVolumeClaim("foo", "ns", core.PersistentVolumeClaimSpec{
    		Selector: &metav1.LabelSelector{
    			MatchExpressions: []metav1.LabelSelectorRequirement{
    				{
    					Key:      "key2",
    					Operator: "Exists",
    				},
    			},
    		},
    		AccessModes: []core.PersistentVolumeAccessMode{
    			core.ReadWriteOnce,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. pkg/registry/apps/daemonset/storage/storage_test.go

    			Labels:    map[string]string{"a": "b"},
    		},
    		Spec: apps.DaemonSetSpec{
    			UpdateStrategy: apps.DaemonSetUpdateStrategy{
    				Type: apps.OnDeleteDaemonSetStrategyType,
    			},
    			Selector: &metav1.LabelSelector{MatchLabels: map[string]string{"a": "b"}},
    			Template: api.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{"a": "b"},
    				},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  10. pkg/registry/admissionregistration/validatingadmissionpolicy/storage/storage_test.go

    								APIVersions: []string{"a"},
    								Resources:   []string{"a"},
    							},
    						},
    					},
    				},
    				ObjectSelector: &metav1.LabelSelector{
    					MatchLabels: map[string]string{"a": "b"},
    				},
    				NamespaceSelector: &metav1.LabelSelector{
    					MatchLabels: map[string]string{"a": "b"},
    				},
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 23:43:34 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top