Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PodController (0.1 sec)

  1. pkg/controller/job/job_controller.go

    	// expects to observe the tracking finalizer removed.
    	finalizerExpectations *uidTrackingExpectations
    
    	// A store of jobs
    	jobLister batchv1listers.JobLister
    
    	// A store of pods, populated by the podController
    	podStore corelisters.PodLister
    
    	// Jobs that need to be updated
    	queue workqueue.TypedRateLimitingInterface[string]
    
    	// Orphan deleted pods that still have a Job tracking finalizer to be removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    				actual = job
    				return job, nil
    			}
    
    			// run
    			err = manager.syncJob(context.TODO(), testutil.GetKey(job, t))
    
    			// We need requeue syncJob task if podController error
    			if tc.podControllerError != nil {
    				if err == nil {
    					t.Error("Syncing jobs expected to return error on podControl exception")
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top