Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,369 for Pods (0.04 sec)

  1. pkg/controller/podautoscaler/replica_calculator.go

    	}
    	podList, err := c.podLister.Pods(namespace).List(selector)
    	if err != nil {
    		return 0, 0, 0, time.Time{}, fmt.Errorf("unable to get pods while calculating replica count: %v", err)
    	}
    	if len(podList) == 0 {
    		return 0, 0, 0, time.Time{}, fmt.Errorf("no pods returned by selector while calculating replica count")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"maxSurge":       "The maximum number of...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  3. pkg/kubelet/config/http.go

    			pods = append(pods, &podList.Items[i])
    		}
    		s.updates <- kubetypes.PodUpdate{Pods: pods, Op: kubetypes.SET, Source: kubetypes.HTTPSource}
    		return nil
    	}
    
    	return fmt.Errorf("%v: received '%v', but couldn't parse as "+
    		"single (%v) or multiple pods (%v)",
    		s.url, string(data), singlePodErr, multiPodErr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 01 07:19:44 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/policy/v1/types.go

    	// A null selector will match no pods, while an empty ({}) selector will select
    	// all pods within the namespace.
    	// +patchStrategy=replace
    	// +optional
    	Selector *metav1.LabelSelector `json:"selector,omitempty" patchStrategy:"replace" protobuf:"bytes,2,opt,name=selector"`
    
    	// An eviction is allowed if at most "maxUnavailable" pods selected by
    	// "selector" are unavailable after the eviction, i.e. even in absence of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. pkg/controller/job/indexed_job_utils.go

    func appendPodsWithSameIndexForRemovalAndRemaining(rm, left, pods []*v1.Pod, ix int) ([]*v1.Pod, []*v1.Pod) {
    	if ix == unknownCompletionIndex {
    		rm = append(rm, pods...)
    		return rm, left
    	}
    	if len(pods) == 1 {
    		left = append(left, pods[0])
    		return rm, left
    	}
    	sort.Sort(controller.ActivePods(pods))
    	rm = append(rm, pods[:len(pods)-1]...)
    	left = append(left, pods[len(pods)-1])
    	return rm, left
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/apps/v1/generated.proto

      // can have their pods stopped for an update at any given time. The update
      // starts by stopping at most 30% of those DaemonSet pods and then brings
      // up new DaemonSet pods in their place. Once the new pods are available,
      // it then proceeds onto other DaemonSet pods, thus ensuring that at least
      // 70% of original number of DaemonSet pods are available at all times during
      // the update.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/generated.proto

      // can have their pods stopped for an update at any given time. The update
      // starts by stopping at most 30% of those DaemonSet pods and then brings
      // up new DaemonSet pods in their place. Once the new pods are available,
      // it then proceeds onto other DaemonSet pods, thus ensuring that at least
      // 70% of original number of DaemonSet pods are available at all times during
      // the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. pkg/kubelet/util/pod_startup_latency_tracker.go

    		delete(p.pods, pod.UID)
    		return
    	}
    
    	state := p.pods[pod.UID]
    	if state == nil {
    		// create a new record for pod, only if it was not yet acknowledged by the Kubelet
    		// this is required, as we want to log metric only for those pods, that where scheduled
    		// after Kubelet started
    		if pod.Status.StartTime.IsZero() {
    			p.pods[pod.UID] = &perPodState{}
    		}
    
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2beta1/generated.proto

      // resource metric across all relevant pods, as a raw value (instead of as
      // a percentage of the request), similar to the "pods" metric source type.
      // +optional
      optional .k8s.io.apimachinery.pkg.api.resource.Quantity targetAverageValue = 3;
    
      // container is the name of the container in the pods of the scaling target
      optional string container = 4;
    }
    
    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. pkg/controller/statefulset/stateful_set_control.go

    	replicaCount := int(*set.Spec.Replicas)
    	// slice that will contain all Pods such that getStartOrdinal(set) <= getOrdinal(pod) <= getEndOrdinal(set)
    	replicas := make([]*v1.Pod, replicaCount)
    	// slice that will contain all Pods such that getOrdinal(pod) < getStartOrdinal(set) OR getOrdinal(pod) > getEndOrdinal(set)
    	condemned := make([]*v1.Pod, 0, len(pods))
    	unhealthy := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top