Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 262 for labelSelectors (0.56 sec)

  1. 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)
  2. 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)
  3. pkg/kubelet/volume_host.go

    }
    
    func (kvh *kubeletVolumeHost) GetTrustAnchorsBySigner(signerName string, labelSelector *metav1.LabelSelector, allowMissing bool) ([]byte, error) {
    	return kvh.clusterTrustBundleManager.GetTrustAnchorsBySigner(signerName, labelSelector, allowMissing)
    }
    
    func (kvh *kubeletVolumeHost) GetNodeLabels() (map[string]string, error) {
    	node, err := kvh.kubelet.GetNode()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2beta1/generated.proto

      optional string metricName = 1;
    
      // metricSelector is used to identify a specific time series
      // within a given metric.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector metricSelector = 2;
    
      // targetValue is the target value of the metric (as a quantity).
      // Mutually exclusive with TargetAverageValue.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/zz_generated.deepcopy.go

    	*out = *in
    	if in.NamespaceSelector != nil {
    		in, out := &in.NamespaceSelector, &out.NamespaceSelector
    		*out = new(v1.LabelSelector)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.ObjectSelector != nil {
    		in, out := &in.ObjectSelector, &out.ObjectSelector
    		*out = new(v1.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: Thu Jul 20 16:30:10 UTC 2023
    - 24.6K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/validation/validation_pluginargs.go

    		if err := validateWhenUnsatisfiable(p.Child("whenUnsatisfiable"), c.WhenUnsatisfiable); err != nil {
    			allErrs = append(allErrs, err)
    		}
    		if c.LabelSelector != nil {
    			f := field.Forbidden(p.Child("labelSelector"), "constraint must not define a selector, as they deduced for each pod")
    			allErrs = append(allErrs, f)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 09:29:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/metrics/client_test.go

    	namespace           string
    	selector            labels.Selector
    	resourceName        v1.ResourceName
    	container           string
    	metricName          string
    	metricSelector      *metav1.LabelSelector
    	metricLabelSelector labels.Selector
    }
    
    func (tc *restClientTestCase) prepareTestClient(t *testing.T) (*metricsfake.Clientset, *cmfake.FakeCustomMetricsClient, *emfake.FakeExternalMetricsClient) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 16.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation.go

    func LabelSelectorHasInvalidLabelValue(ps *metav1.LabelSelector) bool {
    	if ps == nil {
    		return false
    	}
    	for _, e := range ps.MatchExpressions {
    		for _, v := range e.Values {
    			if len(validation.IsValidLabelValue(v)) > 0 {
    				return true
    			}
    		}
    	}
    	return false
    }
    
    // ValidateLabelSelector validate the LabelSelector according to the opts and returns any validation errors.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      optional string metricName = 1;
    
      // metricSelector is used to identify a specific time series
      // within a given metric.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector metricSelector = 2;
    
      // targetValue is the target value of the metric (as a quantity).
      // Mutually exclusive with TargetAverageValue.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/snapshot_test.go

    	podWithAntiAffitiny := st.MakePod().Name("baz").Namespace("ns").PodAntiAffinity("another", &metav1.LabelSelector{MatchLabels: map[string]string{"another": "label"}}, st.PodAntiAffinityWithRequiredReq).Node("node-0").Obj()
    	podsWithAffitiny := []*v1.Pod{
    		st.MakePod().Name("bar").Namespace("ns").PodAffinity("baz", &metav1.LabelSelector{MatchLabels: map[string]string{"baz": "qux"}}, st.PodAffinityWithRequiredReq).Node("node-2").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top