Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 161 for labelSelector (0.32 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.yaml

                    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: Wed May 29 22:40:29 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml

                    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: Wed May 29 22:40:29 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.yaml

                        values:
                        - valuesValue
                podAffinity:
                  preferredDuringSchedulingIgnoredDuringExecution:
                  - podAffinityTerm:
                      labelSelector:
                        matchExpressions:
                        - key: keyValue
                          operator: operatorValue
                          values:
                          - valuesValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/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: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/service.go

    			out.Labels[k] = v
    		}
    	}
    
    	if s.ExportTo != nil {
    		out.ExportTo = s.ExportTo.Copy()
    	}
    
    	if s.LabelSelectors != nil {
    		out.LabelSelectors = make(map[string]string, len(s.LabelSelectors))
    		for k, v := range s.LabelSelectors {
    			out.LabelSelectors[k] = v
    		}
    	}
    
    	out.ClusterExternalAddresses = s.ClusterExternalAddresses.DeepCopy()
    
    	if s.ClusterExternalPorts != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. 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)
  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/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)
  9. 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)
  10. 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)
Back to top