Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for syncCronJob (0.12 sec)

  1. pkg/controller/cronjob/cronjob_controllerv2.go

    	jm.enqueueController(curr)
    }
    
    // syncCronJob reconciles a CronJob with a list of any Jobs that it created.
    // All known jobs created by "cronJob" should be included in "jobs".
    // The current time is passed in to facilitate testing.
    // It returns a bool to indicate an update to api-server is needed
    func (jm *ControllerV2) syncCronJob(
    	ctx context.Context,
    	cronJob *batchv1.CronJob,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2_test.go

    				cronJobControl: cjc,
    				recorder:       recorder,
    				now: func() time.Time {
    					return tc.now
    				},
    			}
    			cjCopy := cj.DeepCopy()
    			requeueAfter, updateStatus, err := jm.syncCronJob(context.TODO(), cjCopy, js)
    			if tc.expectErr && err == nil {
    				t.Errorf("%s: expected error got none with requeueAfter time: %#v", name, requeueAfter)
    			}
    			if tc.expectRequeueAfter {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - Fixed error handling in `EnsureAdminClusterRoleBindingImpl`.
       ([#122893](https://github.com/kubernetes/kubernetes/pull/122893), [@danwinship](https://github.com/danwinship))
    - Fixed incorrect error logging for `syncCronJob`.
       ([#122493](https://github.com/kubernetes/kubernetes/pull/122493), [@mengjiao-liu](https://github.com/mengjiao-liu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top