Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pastActiveDeadline (0.55 sec)

  1. pkg/kubelet/active_deadline.go

    func (m *activeDeadlineHandler) ShouldSync(pod *v1.Pod) bool {
    	return m.pastActiveDeadline(pod)
    }
    
    // ShouldEvict returns true if the pod is past its active deadline.
    // It dispatches an event that the pod should be evicted if it is past its deadline.
    func (m *activeDeadlineHandler) ShouldEvict(pod *v1.Pod) lifecycle.ShouldEvictResponse {
    	if !m.pastActiveDeadline(pod) {
    		return lifecycle.ShouldEvictResponse{Evict: false}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    		return result > 0
    	}
    	return result >= *job.Spec.BackoffLimit
    }
    
    // pastActiveDeadline checks if job has ActiveDeadlineSeconds field set and if
    // it is exceeded. If the job is currently suspended, the function will always
    // return false.
    func (jm *Controller) pastActiveDeadline(job *batch.Job) bool {
    	if job.Spec.ActiveDeadlineSeconds == nil || job.Status.StartTime == nil || jobSuspended(job) {
    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