Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PodSyncLoopHandlers (0.22 sec)

  1. pkg/kubelet/lifecycle/interfaces.go

    func (handlers *PodAdmitHandlers) AddPodAdmitHandler(a PodAdmitHandler) {
    	*handlers = append(*handlers, a)
    }
    
    // PodSyncLoopHandlers maintains a list of handlers to pod sync loop.
    type PodSyncLoopHandlers []PodSyncLoopHandler
    
    // AddPodSyncLoopHandler adds the specified observer.
    func (handlers *PodSyncLoopHandlers) AddPodSyncLoopHandler(a PodSyncLoopHandler) {
    	*handlers = append(*handlers, a)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 17:25:57 UTC 2017
    - 4K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	// admission rule should be applied by a softAdmitHandler.
    	softAdmitHandlers lifecycle.PodAdmitHandlers
    
    	// the list of handlers to call during pod sync loop.
    	lifecycle.PodSyncLoopHandlers
    
    	// the list of handlers to call during pod sync.
    	lifecycle.PodSyncHandlers
    
    	// the number of allowed pods per core
    	podsPerCore int
    
    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