Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 139 for labelSelectors (0.15 sec)

  1. cluster/addons/dns/kube-dns/kube-dns.yaml.sed

            fsGroup: 65534
          affinity:
            podAntiAffinity:
              preferredDuringSchedulingIgnoredDuringExecution:
              - weight: 100
                podAffinityTerm:
                  labelSelector:
                    matchExpressions:
                      - key: k8s-app
                        operator: In
                        values: ["kube-dns"]
                  topologyKey: kubernetes.io/hostname
          tolerations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. istioctl/pkg/util/handlers/handlers.go

    	if err != nil {
    		return []string{}, "", err
    	}
    	if podName != "" {
    		return []string{podName}, namespace, err
    	}
    
    	options := metav1.ListOptions{LabelSelector: selector}
    	podList, err := client.Pods(namespace).List(context.TODO(), options)
    	if err != nil {
    		return []string{}, "", err
    	}
    	pods := []string{}
    	for i := range podList.Items {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 15:01:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. cluster/addons/dns/kube-dns/kube-dns.yaml.base

            fsGroup: 65534
          affinity:
            podAntiAffinity:
              preferredDuringSchedulingIgnoredDuringExecution:
              - weight: 100
                podAffinityTerm:
                  labelSelector:
                    matchExpressions:
                      - key: k8s-app
                        operator: In
                        values: ["kube-dns"]
                  topologyKey: kubernetes.io/hostname
          tolerations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. pkg/apis/policy/zz_generated.deepcopy.go

    		in, out := &in.MinAvailable, &out.MinAvailable
    		*out = new(intstr.IntOrString)
    		**out = **in
    	}
    	if in.Selector != nil {
    		in, out := &in.Selector, &out.Selector
    		*out = new(v1.LabelSelector)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.MaxUnavailable != nil {
    		in, out := &in.MaxUnavailable, &out.MaxUnavailable
    		*out = new(intstr.IntOrString)
    		**out = **in
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/ipam/cidr_allocator.go

    		var err error
    		nodeList, err = kubeClient.CoreV1().Nodes().List(ctx, metav1.ListOptions{
    			FieldSelector: fields.Everything().String(),
    			LabelSelector: labels.Everything().String(),
    		})
    		if err != nil {
    			logger.Error(err, "Failed to list all nodes")
    			return false, nil
    		}
    		return true, nil
    	}); pollErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/policy/v1beta1/zz_generated.deepcopy.go

    		in, out := &in.MinAvailable, &out.MinAvailable
    		*out = new(intstr.IntOrString)
    		**out = **in
    	}
    	if in.Selector != nil {
    		in, out := &in.Selector, &out.Selector
    		*out = new(v1.LabelSelector)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.MaxUnavailable != nil {
    		in, out := &in.MaxUnavailable, &out.MaxUnavailable
    		*out = new(intstr.IntOrString)
    		**out = **in
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. samples/addons/loki.yaml

                  mountPath: /var/loki
              resources:
                {}
          affinity:
            podAntiAffinity:
              requiredDuringSchedulingIgnoredDuringExecution:
              - labelSelector:
                  matchLabels:
                    app.kubernetes.io/component: single-binary
                topologyKey: kubernetes.io/hostname
          volumes:
            - name: tmp
              emptyDir: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/versiongetter.go

    func (g *KubeVersionGetter) ComponentVersions(name string) (map[string][]string, error) {
    	podList, err := g.client.CoreV1().Pods(metav1.NamespaceSystem).List(
    		context.TODO(),
    		metav1.ListOptions{
    			LabelSelector: fmt.Sprintf("component=%s,tier=%s", name, constants.ControlPlaneTier),
    		},
    	)
    	if err != nil {
    		return nil, errors.Wrap(err, "couldn't list pods in cluster")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. pilot/pkg/status/distribution/state.go

    		informers.WithNamespace(namespace),
    		informers.WithTweakListOptions(func(listOptions *metav1.ListOptions) {
    			listOptions.LabelSelector = labels.Set(map[string]string{labelKey: "true"}).AsSelector().String()
    		})).
    		Core().V1().ConfigMaps()
    	c.cmInformer = i.Informer()
    	c.cmHandle, _ = c.cmInformer.AddEventHandler(&DistroReportHandler{dc: c})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. pkg/apis/policy/types.go

    	// evictions by specifying "100%".
    	// +optional
    	MinAvailable *intstr.IntOrString
    
    	// Label query over pods whose evictions are managed by the disruption
    	// budget.
    	// +optional
    	Selector *metav1.LabelSelector
    
    	// An eviction is allowed if at most "maxUnavailable" pods selected by
    	// "selector" are unavailable after the eviction, i.e. even in absence of
    	// the evicted pod. For example, one can prevent all voluntary evictions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top