Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cleanupPodUpdates (0.47 sec)

  1. pkg/kubelet/pod_workers.go

    			return fmt.Errorf("timeout waiting to kill pod")
    		}
    	}
    }
    
    // cleanupPodUpdates closes the podUpdates channel and removes it from
    // podUpdates map so that the corresponding pod worker can stop. It also
    // removes any undelivered work. This method must be called holding the
    // pod lock.
    func (p *podWorkers) cleanupPodUpdates(uid types.UID) {
    	if ch, ok := p.podUpdates[uid]; ok {
    		close(ch)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top