Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AllReady (0.08 sec)

  1. pkg/kubelet/kubelet.go

    // found in the runtime cache.
    func (kl *Kubelet) deletePod(pod *v1.Pod) error {
    	if pod == nil {
    		return fmt.Errorf("deletePod does not allow nil pod")
    	}
    	if !kl.sourcesReady.AllReady() {
    		// If the sources aren't ready, skip deletion, as we may accidentally delete pods
    		// for sources that haven't reported yet.
    		return fmt.Errorf("skipping delete because sources aren't ready yet")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top