Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 590 for labelSelectors (0.21 sec)

  1. pkg/kube/inject/inject.go

    	// Takes precedence over AlwaysInjectSelector.
    	NeverInjectSelector []metav1.LabelSelector `json:"neverInjectSelector"`
    
    	// AlwaysInjectSelector: Forces the injection on pods whose labels match this selector.
    	// It's an array of label selectors, that will be OR'ed, meaning we will iterate
    	// over it and stop at the first match
    	AlwaysInjectSelector []metav1.LabelSelector `json:"alwaysInjectSelector"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    			},
    		},
    	}
    
    	selectorSvc := makeService("selector.com", "selector", "0.0.0.0",
    		map[string]int{"tcp-444": 444, "http-445": 445}, true, model.ClientSideLB)
    	selectorSvc.Attributes.LabelSelectors = map[string]string{"app": "wle"}
    
    	serviceTests = append(serviceTests, struct {
    		externalSvc *config.Config
    		services    []*model.Service
    	}{
    		externalSvc: selector,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    							// A Kubernetes service with no endpoints means there are no endpoints at
    							// all, so don't bother sending, as traffic will never work. If we did
    							// send a wildcard listener, we may get into a situation where a scale
    							// down leads to a listener conflict. Similarly, if we have a
    							// labelSelector on the Service, then this may have endpoints not yet
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - `LabelSelectors` specified in `topologySpreadConstraints` were validated to ensure that pods are scheduled as expected. Existing pods with invalid `LabelSelectors` could be updated, but new pods were required to specify valid `LabelSelectors`. ([#111802](https://github.com/kubernetes/kubernetes/pull/111802), [@maaoBit](https://github.com/maaoBit))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    	extSvcSelector := buildServiceWithPort("example2.com", 9999, protocol.TCP, tnow)
    	extSvcSelector.Resolution = model.Passthrough
    	extSvcSelector.Attributes.ServiceRegistry = provider.External
    	extSvcSelector.Attributes.LabelSelectors = map[string]string{"foo": "bar"}
    
    	tests := []struct {
    		name                      string
    		instances                 []*model.ServiceInstance
    		services                  []*model.Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    				NamespaceSelector:       &metav1.LabelSelector{},
    				ObjectSelector:          &metav1.LabelSelector{},
    				AdmissionReviewVersions: []string{"v1beta1"},
    			}, {
    				Name:              "shouldNotBeCalled",
    				ClientConfig:      ccfgSVC("shouldNotBeCalled"),
    				NamespaceSelector: &metav1.LabelSelector{},
    				ObjectSelector: &metav1.LabelSelector{
    					MatchLabels: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/defaults_test.go

    			expectedObj:             ListOptions{LabelSelector: labels.Everything(), FieldSelector: fields.Everything(), Watch: true, ResourceVersionMatch: "m"},
    		},
    		{
    			name:                    "no-op, Watch=false",
    			watchListFeatureEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:32 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/v1beta1/defaults_test.go

    				Webhooks: []v1beta1.ValidatingWebhook{{
    					FailurePolicy:           &ignore,
    					MatchPolicy:             &exact,
    					TimeoutSeconds:          &thirty,
    					NamespaceSelector:       &metav1.LabelSelector{},
    					ObjectSelector:          &metav1.LabelSelector{},
    					SideEffects:             &unknown,
    					AdmissionReviewVersions: []string{"v1beta1"},
    				}},
    			},
    		},
    		{
    			name: "MutatingWebhookConfiguration",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 20:24:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching_test.go

    			expectMatches: false,
    		},
    		{
    			name: "wildcard rule, match as requested",
    			criteria: &v1.MatchResources{
    				NamespaceSelector: &metav1.LabelSelector{},
    				ObjectSelector:    &metav1.LabelSelector{},
    				ResourceRules: []v1.NamedRuleWithOperations{{
    					RuleWithOperations: v1.RuleWithOperations{
    						Operations: []v1.OperationType{"*"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  10. plugin/pkg/admission/antiaffinity/admission_test.go

    						{
    							LabelSelector: &metav1.LabelSelector{
    								MatchExpressions: []metav1.LabelSelectorRequirement{
    									{
    										Key:      "security",
    										Operator: metav1.LabelSelectorOpIn,
    										Values:   []string{"S2"},
    									},
    								},
    							},
    							TopologyKey: v1.LabelHostname,
    						}, {
    							LabelSelector: &metav1.LabelSelector{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 7.9K bytes
    - Viewed (0)
Back to top