Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LowerExpectations (0.39 sec)

  1. pkg/controller/controller_utils.go

    func (r *ControllerExpectations) CreationObserved(logger klog.Logger, controllerKey string) {
    	r.LowerExpectations(logger, controllerKey, 1, 0)
    }
    
    // DeletionObserved atomically decrements the `del` expectation count of the given controller.
    func (r *ControllerExpectations) DeletionObserved(logger klog.Logger, controllerKey string) {
    	r.LowerExpectations(logger, controllerKey, 0, 1)
    }
    
    // ControlleeExpectations track controllee creates/deletes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller.go

    			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)
    			// The skipped pods will be retried later. The next controller resync will
    			// retry the slow start process.
    			break
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top