Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for skippedPods (0.23 sec)

  1. pkg/controller/replicaset/replica_set.go

    		// retry the slow start process.
    		if skippedPods := diff - successfulCreations; skippedPods > 0 {
    			logger.V(2).Info("Slow-start failure. Skipping creation of pods, decrementing expectations", "podsSkipped", skippedPods, "kind", rsc.Kind, "replicaSet", klog.KObj(rs))
    			for i := 0; i < skippedPods; i++ {
    				// Decrement the expected number of creates because the informer won't observe this pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller.go

    		skippedPods := createDiff - (batchSize + pos)
    		if errorCount < len(errCh) && skippedPods > 0 {
    			logger.V(2).Info("Slow-start failure. Skipping creation pods, decrementing expectations for daemon set", "skippedPods", skippedPods, "daemonset", klog.KObj(ds))
    			dsc.expectations.LowerExpectations(logger, dsKey, skippedPods, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    			// any skipped pods that we never attempted to start shouldn't be expected.
    			skippedPods := diff - batchSize
    			if errorCount < len(errCh) && skippedPods > 0 {
    				logger.V(2).Info("Slow-start failure. Skipping creating pods, decrementing expectations", "skippedCount", skippedPods, "job", klog.KObj(job))
    				active -= skippedPods
    				for i := int32(0); i < skippedPods; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top