Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 530 for LabelSelector (0.26 sec)

  1. pkg/apis/extensions/v1beta1/defaults.go

    	labels := obj.Spec.Template.Labels
    
    	// TODO: support templates defined elsewhere when we support them in the API
    	if labels != nil {
    		if obj.Spec.Selector == nil {
    			obj.Spec.Selector = &metav1.LabelSelector{
    				MatchLabels: labels,
    			}
    		}
    		if len(obj.Labels) == 0 {
    			obj.Labels = labels
    		}
    	}
    	updateStrategy := &obj.Spec.UpdateStrategy
    	if updateStrategy.Type == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. pkg/apis/apps/fuzzer/fuzzer.go

    			}
    			if s.Spec.Selector == nil {
    				s.Spec.Selector = &metav1.LabelSelector{MatchLabels: s.Spec.Template.Labels}
    			}
    			if len(s.Labels) == 0 {
    				s.Labels = s.Spec.Template.Labels
    			}
    		},
    		func(j *apps.Deployment, c fuzz.Continue) {
    			c.FuzzNoCustom(j)
    
    			// match defaulting
    			if j.Spec.Selector == nil {
    				j.Spec.Selector = &metav1.LabelSelector{MatchLabels: j.Spec.Template.Labels}
    			}
    			if len(j.Labels) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ListOptions.yaml

    allowWatchBookmarks: true
    apiVersion: v1
    continue: continueValue
    fieldSelector: fieldSelectorValue
    kind: ListOptions
    labelSelector: labelSelectorValue
    limit: 7
    resourceVersion: resourceVersionValue
    resourceVersionMatch: resourceVersionMatchValue
    sendInitialEvents: true
    timeoutSeconds: 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 300 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/core.v1.ListOptions.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:25 UTC 2023
    - 376 bytes
    - Viewed (0)
  5. pkg/registry/admissionregistration/validatingadmissionpolicybinding/strategy_test.go

    				Name: "foo-selector",
    			},
    			Spec: admissionregistration.ValidatingAdmissionPolicyBindingSpec{
    				PolicyName: "replicalimit-policy.example.com",
    				ParamRef: &admissionregistration.ParamRef{
    					Selector: &metav1.LabelSelector{
    						MatchLabels: map[string]string{
    							"label": "value",
    						},
    					},
    					ParameterNotFoundAction: &denyAction,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. pkg/registry/batch/job/storage/storage_test.go

    	return &batch.Job{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo",
    			Namespace: "default",
    		},
    		Spec: batch.JobSpec{
    			Completions: &completions,
    			Parallelism: &parallelism,
    			Selector: &metav1.LabelSelector{
    				MatchLabels: map[string]string{"a": "b"},
    			},
    			ManualSelector: newBool(true),
    			Template: api.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{"a": "b"},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. pkg/registry/core/pod/strategy.go

    // and merge to LabelSelector with the given operator:
    func applyLabelKeysToLabelSelector(labelSelector *metav1.LabelSelector, labelKeys []string, operator metav1.LabelSelectorOperator, podLabels map[string]string) {
    	for _, key := range labelKeys {
    		if value, ok := podLabels[key]; ok {
    			labelSelector.MatchExpressions = append(labelSelector.MatchExpressions, metav1.LabelSelectorRequirement{
    				Key:      key,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. pkg/registry/admissionregistration/validatingadmissionpolicy/strategy_test.go

    					r := admissionregistration.MatchPolicyType("Exact")
    					return &r
    				}(),
    				ObjectSelector: &metav1.LabelSelector{
    					MatchLabels: map[string]string{"a": "b"},
    				},
    				NamespaceSelector: &metav1.LabelSelector{
    					MatchLabels: map[string]string{"a": "b"},
    				},
    				ResourceRules: []admissionregistration.NamedRuleWithOperations{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:29:56 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme/register_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    func TestListOptions(t *testing.T) {
    	// verify round trip conversion
    	ten := int64(10)
    	in := &metav1.ListOptions{
    		LabelSelector:   "a=1",
    		FieldSelector:   "b=1",
    		ResourceVersion: "10",
    		TimeoutSeconds:  &ten,
    		Watch:           true,
    	}
    	out := &metainternalversion.ListOptions{}
    	if err := scheme.Convert(in, out, nil); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/strategy_test.go

    				},
    				Spec: api.PodSpec{
    					Affinity: &api.Affinity{
    						PodAffinity: &api.PodAffinity{
    							RequiredDuringSchedulingIgnoredDuringExecution: []api.PodAffinityTerm{
    								{
    									LabelSelector: &metav1.LabelSelector{
    										MatchLabels: map[string]string{
    											"region": "Asia",
    										},
    									},
    									MatchLabelKeys:    []string{"country"},
    									MismatchLabelKeys: []string{"city"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top